-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger_forwarding.log.1100
More file actions
12805 lines (12805 loc) · 739 KB
/
logger_forwarding.log.1100
File metadata and controls
12805 lines (12805 loc) · 739 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2022-12-08 21:29:40.666 INFO SendStrings.App main Starting main app
2022-12-08 21:29:41.132 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 21:29:41.133 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 21:29:41.145 INFO Configs.ConvergenceLayerParams readConvergenceLayerConfigFile Parsed config file info
2022-12-08 21:29:41.145 INFO Configs.ConvergenceLayerParams getInstance Created ConvergenceLayerParams singleton
2022-12-08 21:29:41.146 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 21:29:41.146 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 21:29:41.148 INFO BPv7.AdminElementStatusReportBuilder getInstance Created AdminElementStatusReportBuilder singleton
2022-12-08 21:29:41.149 INFO BPv7.AdminElementStatusReportRcode getInstance Created AdminElementStatusReportRcode singleton
2022-12-08 21:29:41.153 INFO BPv7.AdminElement getInstance Created AdminElement singleton
2022-12-08 21:29:41.154 INFO BPv7.ApplicationAgent getInstance Created ApplicationAgent singleton
2022-12-08 21:29:41.154 INFO SendStrings.App receiveSync Starting AA and subclass threads
2022-12-08 21:29:41.155 INFO SendStrings.App receiveSync Receiving SYNC message on host forwarding
2022-12-08 21:29:41.156 INFO DTCP.DTCP getInstance Created DTCP singleton
2022-12-08 21:29:41.157 INFO BPv7.BPAUtils getInstance Created BPA singleton
2022-12-08 21:29:41.159 INFO BPv7.BPA <init> Started BPA sending and receiving threads
2022-12-08 21:29:41.159 INFO BPv7.BPA getInstance Created BPA singleton
2022-12-08 21:29:41.165 INFO DTCP.DTCPServer run DTCP Server Started
2022-12-08 21:29:42.034 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50216
2022-12-08 21:29:42.074 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50232
2022-12-08 21:29:42.115 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130192568::seqNum:0"
2022-12-08 21:29:42.116 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:forwarding::creationTime:130192612::seqNum:0"
2022-12-08 21:29:42.122 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.6894073879140429
2022-12-08 21:29:42.127 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:forwarding::creationTime:130192612::seqNum:0; Time (ms) since creation: 135
2022-12-08 21:29:42.128 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130192612
2022-12-08 21:29:42.129 INFO SendStrings.App receiveSync Verified SYNC from a, replying in kind
2022-12-08 21:29:42.129 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130192753::seqNum:0
2022-12-08 21:29:42.129 INFO BPv7.BPA send saving the bundle, timestamp: 130192753
2022-12-08 21:29:42.132 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.04878239047517996
2022-12-08 21:29:42.132 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.134 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130192612
2022-12-08 21:29:42.139 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:forwarding::creationTime:130192612::seqNum:0; Time (ms) since creation: 147; Size of bundle payload (bytes):89
2022-12-08 21:29:42.139 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.7549458356022392
2022-12-08 21:29:42.139 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130192568::seqNum:0; Time (ms) since creation: 195
2022-12-08 21:29:42.140 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130192568::seqNum:0; Time (ms) since creation: 182; Size of bundle payload (bytes):89
2022-12-08 21:29:42.140 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:forwarding::creationTime:130192612::seqNum:0; Time (ms) since creation: 152; Size of bundle payload (bytes):89
2022-12-08 21:29:42.158 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130192568
2022-12-08 21:29:42.158 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130192568
2022-12-08 21:29:42.159 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130192753
2022-12-08 21:29:42.159 WARNING SendStrings.App receiveSync Host forwarding finished with SYNC receive
2022-12-08 21:29:42.161 WARNING SendStrings.App main Host forwarding:: Starting scenario #1100:: "High density of packets, small packets, low density of expected downs"
2022-12-08 21:29:42.162 WARNING SendStrings.App main All done with tests (warning so it will show up on cmd line)
2022-12-08 21:29:42.165 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 0,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "forwarding"
},
"reportToNode" : {
"id" : "forwarding"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130192753
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "U2NlbmFyaW8gPSAxMTAwOjogIkhpZ2ggZGVuc2l0eSBvZiBwYWNrZXRzLCBzbWFsbCBwYWNrZXRzLCBsb3cgZGVuc2l0eSBvZiBleHBlY3RlZCBkb3ducyI=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.176 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:forwarding::to:a::creationTime:130192753::seqNum:0; Time (ms) since creation: 46; Size of bundle payload (bytes):89
2022-12-08 21:29:42.181 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:forwarding::to:a::creationTime:130192753::seqNum:0; Time (ms) since creation: 49
2022-12-08 21:29:42.184 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130192753
2022-12-08 21:29:42.186 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.200 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.24892592835670602
2022-12-08 21:29:42.214 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 0,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130192568
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "U2NlbmFyaW8gPSAxMTAwOjogIkhpZ2ggZGVuc2l0eSBvZiBwYWNrZXRzLCBzbWFsbCBwYWNrZXRzLCBsb3cgZGVuc2l0eSBvZiBleHBlY3RlZCBkb3ducyI=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.239 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:130192568::seqNum:0; Time (ms) since creation: 295; Size of bundle payload (bytes):89
2022-12-08 21:29:42.240 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:130192568::seqNum:0; Time (ms) since creation: 296
2022-12-08 21:29:42.240 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130192568
2022-12-08 21:29:42.415 INFO DTCP.DTCPServer run Connected to client! /10.0.0.3:45336
2022-12-08 21:29:42.435 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:130192974::seqNum:0"
2022-12-08 21:29:42.436 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.6284138685138062
2022-12-08 21:29:42.436 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:130192974::seqNum:0; Time (ms) since creation: 86; Size of bundle payload (bytes):89
2022-12-08 21:29:42.436 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.3968404416801383
2022-12-08 21:29:42.436 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:130192974::seqNum:0; Time (ms) since creation: 86
2022-12-08 21:29:42.437 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130192974
2022-12-08 21:29:42.437 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130192974
2022-12-08 21:29:42.437 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.445 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 0,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130192974
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "U2NlbmFyaW8gPSAxMTAwOjogIkhpZ2ggZGVuc2l0eSBvZiBwYWNrZXRzLCBzbWFsbCBwYWNrZXRzLCBsb3cgZGVuc2l0eSBvZiBleHBlY3RlZCBkb3ducyI=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.447 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130192974::seqNum:0; Time (ms) since creation: 97; Size of bundle payload (bytes):89
2022-12-08 21:29:42.447 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130192974::seqNum:0; Time (ms) since creation: 97
2022-12-08 21:29:42.448 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130192974
2022-12-08 21:29:42.472 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50238
2022-12-08 21:29:42.503 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193087::seqNum:0"
2022-12-08 21:29:42.504 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.3043410324409006
2022-12-08 21:29:42.504 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193087::seqNum:0; Time (ms) since creation: 41; Size of bundle payload (bytes):642
2022-12-08 21:29:42.504 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.7665185233185271
2022-12-08 21:29:42.505 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193087::seqNum:0; Time (ms) since creation: 42
2022-12-08 21:29:42.506 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193087
2022-12-08 21:29:42.506 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193087
2022-12-08 21:29:42.506 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193087
2022-12-08 21:29:42.508 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.513 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193087
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "oOmCI5vUZfRqI4iInRZFYUWw/zp+Gbuu3hb4+CWulew8hBHbYwHlPjdhXMRHk3XvalxnLj3i+zMbyjCP8QCJZO0qkuEFrHIyXEspJSCd+blPEZ2539q7CUiCKVOoMRNB+CN4NHvnSLRAYjG6MK3sneVwh1K+2WXvh/zJJICwsfGXPY/foOFoPFtx1nX/K6HYTbBRB1cayOFJXlrJdtEZM3RYwfa12yVXvV0IRxpeVcdeSu+wzj2GfdhrgLjIAAAUMsIS/t2y5hKGRE+LkmDpqiOCc45n25oQzg49LnkH4WLkX9+hoPhflGzpivN8NajoW7XmAQ6hSrecLKTj0V//PJSoohhsm8hROHXBXnLgdZH4foPS0AMrSwXNSI3amQaLvm/Upg8fy0NJhJd/EJP0EKCphStggB5doJCXY+TPBpTSf6SEP2U1sQ+FS1p46XLGL/L0iZNraO1Zd5mGASu6c7UEn9QSBqkYkWZOys82tfEzmhXv5FI6F/D22AOKd0YtQMaDcYY4ziHoltNHveHrzW/KaPjx7FxveGFjopjJ7EfAMtoY+krLbcFR8hbx0GjtWMVm8fuZ1mfamyBejDFZX3Q5DN+zqwKV3z4y45vn5eib6VyOanSxpFAk+6iHgITVE/UR6VmBWZ6XYJ2L8JFuPZWEGcNH8ULQ6miSHfIcWuBDJvged9OIwlNSsYyqYT7E2XRPE8EQlycMbnFM+OaTgSN+y+n+QjtcENfJBoW6JoiunNvNqR7hqe7EA7IHLX6TwriyFsJS+Xvft97Yw45N3I8kVt/1AhSQG9LCsFOwlfmlh0Go+z8mtWfyrqipK1eAqY2ZS0AiBHTyY1WgU7kxMEVM",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.523 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193147::seqNum:0
2022-12-08 21:29:42.524 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193147
2022-12-08 21:29:42.525 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193147
2022-12-08 21:29:42.525 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:130193087::seqNum:0; Time (ms) since creation: 62; Size of bundle payload (bytes):642
2022-12-08 21:29:42.528 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:130193087::seqNum:0; Time (ms) since creation: 65
2022-12-08 21:29:42.528 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193087
2022-12-08 21:29:42.529 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.1637160275514571
2022-12-08 21:29:42.529 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.534 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50254
2022-12-08 21:29:42.554 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193144::seqNum:0"
2022-12-08 21:29:42.554 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193144::seqNum:0; Time (ms) since creation: 34
2022-12-08 21:29:42.555 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193144
2022-12-08 21:29:42.555 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193144
2022-12-08 21:29:42.555 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193144
2022-12-08 21:29:42.558 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193182::seqNum:0
2022-12-08 21:29:42.558 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193182
2022-12-08 21:29:42.558 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193182
2022-12-08 21:29:42.575 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50268
2022-12-08 21:29:42.577 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "forwarding"
},
"reportToNode" : {
"id" : "forwarding"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193147
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMDg3CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.581 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:forwarding::to:a::creationTime:130193147::seqNum:0; Time (ms) since creation: 58; Size of bundle payload (bytes):312
2022-12-08 21:29:42.582 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:forwarding::to:a::creationTime:130193147::seqNum:0; Time (ms) since creation: 58
2022-12-08 21:29:42.582 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193147
2022-12-08 21:29:42.582 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.588 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193144::seqNum:0; Time (ms) since creation: 68; Size of bundle payload (bytes):998
2022-12-08 21:29:42.602 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193144
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "YJQp6UjOtFgomZufQjys6o+i1HuiTlC3G7lxrZX202bK4qOscEazl0QX4dyfDborYruuWfQKDfv2SQ1FuZaCEDKTpK08SKGRIpGvdK0m5UcUhy/kg3vF5ujKKXXB7GuHloLIEdcvUeJxnfvc9Plaju6v5wj84MKv++l/QIc4Lsoqc7c1kKgVwzXdpQ++14Doq2Qf+W8ZYvTMMLrW5y8ZCtP+X79Y7SY4RXKKTJtiAJ398s7M0Gi86A1jdRJDOz3ErVnPv0aZP6DOxZhY3RM+hwgyIMF30XBnAy1+GgDCdbGG5E6uEwjTP86erZQd0GuA5bzCjKD8D3QIIqYyB4fAq2CPsdGfRn9rmogpJLSLqWsh/ZyD7LLsKgoLyjlFFXRf8wv7n2qTnAdYiX2gQ//lUjsFpCre5FIQC4Xjqys8Jx8o0Mq3G28MLYYoKIQsbHFGKTvka19DZy+f7z9ALpxbeZ/oNFr9PKrlccXcjBZxdD3T0gTSO2gxf3GrNmVIQz0/Kpvytn1z/xy/Pc/RbO68CZcY0BGijpKSvqj463VZCYRQ2RTwrVwdFObjXTDf+pKNxIuKr6jbKq7YRVMwN93tvMuConXEZr7hssWT/uDnh8YfySK9xTZv/aR9gOkTcHSRCnjMPJwEEcrDQj2oJ1Zx7GFFhIVVsnHGHGZemhIzyhywfKFhMx7OgwzziPgvWgLYtteWeBiEHirP/qdIQbN2WBPqa/UqEX3SVd1uV7ewtCA/FLXStI3vNFxPCbwx5lMpvjEjF0lBBzi6/VcvQgP05ZF2o0kudVjC+tUoB3c22Q/vL5v2+Tj94SscwASYPL0DNFxSgHVNbfvzRQCGLaALzRlOWw7IWS9h6vLLhkPtI4cmz/Qh186FByWWHs5v3aRlZHVHs+kcfCwQpQ0FE8Bvk1UgNkyKH9/bgF+tRt+iQ80o0YQUseP1aQeF8UOb/sOMKFKYXyUsfvWKi1M/Iuy2K3ZhROkbWML7ESuNnrElg0n3UkVkJJDULt5ST2ZhWLYej11dVUVdVVjA28rB8YngP44H3fBnDurQqIthb8mWmZJqZuEA8Y/pR3w+KxI7DFIhryUK6LOZDHYrSGSWC+PgzDKJFPoFV1g7AWSX+jHe0xmM3udwL+1IUjvFpmndkaALxhFzvAuEs5LdHP33ulYw9VFZgkXptC38w6ho8XatIa04La+isoNC1PafrzKC1r3AmP370U9Gm95BkA7bFqJJK09c0BxLHsWGA4HG23e8RBzyjSGmtuihEkXv6cd8+ppWBbbePk3IHRwO9/RRTWr/UGUSd2rXrbB+9j2uQG4s4SQI+sOf0YI=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.611 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:130193144::seqNum:0; Time (ms) since creation: 91; Size of bundle payload (bytes):998
2022-12-08 21:29:42.611 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:130193144::seqNum:0; Time (ms) since creation: 91
2022-12-08 21:29:42.612 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193144
2022-12-08 21:29:42.612 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.8650345793611245
2022-12-08 21:29:42.612 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.632 INFO DTCP.DTCPServer run Connected to client! /10.0.0.3:45348
2022-12-08 21:29:42.636 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "forwarding"
},
"reportToNode" : {
"id" : "forwarding"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193182
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMTQ0CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.646 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193186::seqNum:0"
2022-12-08 21:29:42.649 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.630659571212052
2022-12-08 21:29:42.649 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.10322369271608844
2022-12-08 21:29:42.649 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193186::seqNum:0; Time (ms) since creation: 87
2022-12-08 21:29:42.650 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193186
2022-12-08 21:29:42.650 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193186
2022-12-08 21:29:42.650 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193186
2022-12-08 21:29:42.653 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193277::seqNum:0
2022-12-08 21:29:42.655 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193277
2022-12-08 21:29:42.655 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193277
2022-12-08 21:29:42.660 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50270
2022-12-08 21:29:42.664 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193186::seqNum:0; Time (ms) since creation: 102; Size of bundle payload (bytes):655
2022-12-08 21:29:42.664 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:forwarding::to:a::creationTime:130193182::seqNum:0; Time (ms) since creation: 106; Size of bundle payload (bytes):312
2022-12-08 21:29:42.665 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:forwarding::to:a::creationTime:130193182::seqNum:0; Time (ms) since creation: 107
2022-12-08 21:29:42.666 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193182
2022-12-08 21:29:42.668 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.699 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:130193248::seqNum:0"
2022-12-08 21:29:42.699 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.6817301183706694
2022-12-08 21:29:42.699 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:130193248::seqNum:0; Time (ms) since creation: 75; Size of bundle payload (bytes):312
2022-12-08 21:29:42.700 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.4988995171059397
2022-12-08 21:29:42.700 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:130193248::seqNum:0; Time (ms) since creation: 76
2022-12-08 21:29:42.701 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193248
2022-12-08 21:29:42.701 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193248
2022-12-08 21:29:42.703 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193261::seqNum:0"
2022-12-08 21:29:42.703 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.8895245108195123
2022-12-08 21:29:42.703 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193261::seqNum:0; Time (ms) since creation: 66; Size of bundle payload (bytes):338
2022-12-08 21:29:42.703 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.07370997301549886
2022-12-08 21:29:42.704 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193261::seqNum:0; Time (ms) since creation: 67
2022-12-08 21:29:42.704 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193261
2022-12-08 21:29:42.704 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193261
2022-12-08 21:29:42.707 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193261
2022-12-08 21:29:42.706 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193330::seqNum:0
2022-12-08 21:29:42.708 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193330
2022-12-08 21:29:42.708 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193330
2022-12-08 21:29:42.711 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50282
2022-12-08 21:29:42.712 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193186
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "TdqWvox37Rc1ddkXPXNMCxZMq4b1hdW4PD26POqhgXkY3hmG1+g1Nx7Garg5qnE9/h9hQAwYZqIQPH4vybZqpxzdIea3Tqvr+sA+48bnWLiPiLgjmO7jnTgvVEpbWHN4o8e+GqFENciexM2rZYevyXS+MEvKgvikvfnsQWgXNuDXAohOIQOdHGQJMGvGGU//elnY/yQoA0Fp7P56LVnrzUmhGA5SbjTSqc1FKFFXU54TkYSz/4KSLkw6dAPb8dtnbSuq/Gd04DdNkgjnoOILK9YMgGUGTyaBOX1D4hWPnLcb+A+5Jryg6DZnF5UC23Oz/UQT07l188lGSiSDdvJbqRAVlchoo+6AzUfQOfo+GVnlcojf63SkoVDWkbcJ/M1/a79+y5uNjUh/h4jIvx6eipIRjbFFFVA6dKrNws+EfcUwbDU1QIKmTz1OtnO6nj14KO4SHsFwIEyXaNQqPQmPU8hgVkBtG0m//CQdqArK/pFzyBIbL0lkxOCfdpS7Iz49f9sv3UvEq0Y2kk/nAzV/SWCD0h6zrgQcOLEHxSbXn04FzGnnmUfFn2jGF5Gqb3/kguWQgkX2mB/Rw1QATqlzVO4b3QUnrhkfkliZSztIm+iO6bg5LwCTQJzJ1V15jQ2SMofbNVxt1CO6Ej4ipN3Xi9+e/nCTzj080ZNKXN6eoqGtBGopseWJBmnOv6MHgvGg8pkH8+NriAJr9zXvK6uCeqC+L040MTrWLGHhPzxtk6nr9ICCZyHXS6kB6X0AjQiALpsbiQZCb8wUmajlTD/jEw/gxLO6/VQ6jzwQ0HJWS0vgVAJx3VCQ4jZJK2v3UgosSMJxMk2rf7hjA/WviUvaWCIjtxiDm8RbLGZBmC/gpg==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.722 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:130193186::seqNum:0; Time (ms) since creation: 160; Size of bundle payload (bytes):655
2022-12-08 21:29:42.723 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:130193186::seqNum:0; Time (ms) since creation: 161
2022-12-08 21:29:42.724 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193186
2022-12-08 21:29:42.724 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.725 INFO DTCP.DTCPServer run Connected to client! /10.0.0.3:45356
2022-12-08 21:29:42.746 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "forwarding"
},
"reportToNode" : {
"id" : "forwarding"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193277
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMTg2CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.749 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:forwarding::to:a::creationTime:130193277::seqNum:0; Time (ms) since creation: 96; Size of bundle payload (bytes):312
2022-12-08 21:29:42.749 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50298
2022-12-08 21:29:42.750 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:forwarding::to:a::creationTime:130193277::seqNum:0; Time (ms) since creation: 97
2022-12-08 21:29:42.750 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193277
2022-12-08 21:29:42.750 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.756 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193344::seqNum:0"
2022-12-08 21:29:42.757 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193344::seqNum:0; Time (ms) since creation: 37
2022-12-08 21:29:42.757 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193344
2022-12-08 21:29:42.757 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193344
2022-12-08 21:29:42.758 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193344
2022-12-08 21:29:42.760 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193384::seqNum:0
2022-12-08 21:29:42.760 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193384
2022-12-08 21:29:42.761 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193384
2022-12-08 21:29:42.761 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193344::seqNum:0; Time (ms) since creation: 41; Size of bundle payload (bytes):758
2022-12-08 21:29:42.779 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193295::seqNum:0"
2022-12-08 21:29:42.780 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193295::seqNum:0; Time (ms) since creation: 109
2022-12-08 21:29:42.780 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193295
2022-12-08 21:29:42.780 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193295
2022-12-08 21:29:42.781 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193295
2022-12-08 21:29:42.783 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193407::seqNum:0
2022-12-08 21:29:42.783 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193407
2022-12-08 21:29:42.784 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193407
2022-12-08 21:29:42.785 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193248
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMDg3CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.789 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:130193321::seqNum:0"
2022-12-08 21:29:42.789 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.8733785185831716
2022-12-08 21:29:42.801 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.6362194771925019
2022-12-08 21:29:42.801 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:130193321::seqNum:0; Time (ms) since creation: 104
2022-12-08 21:29:42.802 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193321
2022-12-08 21:29:42.802 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193321
2022-12-08 21:29:42.795 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193295::seqNum:0; Time (ms) since creation: 124; Size of bundle payload (bytes):154
2022-12-08 21:29:42.803 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:130193321::seqNum:0; Time (ms) since creation: 106; Size of bundle payload (bytes):312
2022-12-08 21:29:42.816 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130193248::seqNum:0; Time (ms) since creation: 192; Size of bundle payload (bytes):312
2022-12-08 21:29:42.817 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130193248::seqNum:0; Time (ms) since creation: 193
2022-12-08 21:29:42.817 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193248
2022-12-08 21:29:42.817 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.5881222222007234
2022-12-08 21:29:42.817 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.821 INFO DTCP.DTCPServer run Connected to client! /10.0.0.3:45372
2022-12-08 21:29:42.832 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50308
2022-12-08 21:29:42.836 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:130193390::seqNum:0"
2022-12-08 21:29:42.836 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.11299999276670769
2022-12-08 21:29:42.836 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:130193390::seqNum:0; Time (ms) since creation: 70; Size of bundle payload (bytes):312
2022-12-08 21:29:42.836 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:130193390::seqNum:0; Time (ms) since creation: 70
2022-12-08 21:29:42.837 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193390
2022-12-08 21:29:42.837 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193390
2022-12-08 21:29:42.837 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193261
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "wqwN48TyYEdVc/9nkzKuxZvuTvTWy0r3E2Ze+EYjcVSNUbb4eS4OVMSbDz6Le5LiFRiP5bTW9k7KvQ09uCF4ZdASNk9bF8m31/jLKzrlOVosGw+St9B0b8ZYMGrcDytcYgVLZmWtrs+ojbckSUeVxKM9xiZ+yeXcHG5nm8+Cgb6RhBdT+CfKNuPKtkhlGfSD8H5p+kua+p+yZ+an7yvN/J0MMe9X/raVSi2wtb/vznK+mn0+hPbdJsbo7mZfnV8GOuW/NyqAS8QzLDK4jQe1jGvbtt4zDCCGZSRX/IYedE4SnPlf//3Nnwh4eBiH464Ni7yQvIe0ReL1gxQmkJDP30FPgHnEgXYGxohq0mr4p9tjXUeIUTTdfKudBOnrYsi518dwnE8XP/9/fG0AeWmxLW7DnLOIjDqaFntuyMyXqJVaZCko1qREM9hFIyL31C9N3Ow=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.839 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193399::seqNum:0"
2022-12-08 21:29:42.839 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.6518444727687197
2022-12-08 21:29:42.840 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193399::seqNum:0; Time (ms) since creation: 65
2022-12-08 21:29:42.840 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193399
2022-12-08 21:29:42.840 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193399
2022-12-08 21:29:42.841 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193399
2022-12-08 21:29:42.843 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193467::seqNum:0
2022-12-08 21:29:42.843 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193467
2022-12-08 21:29:42.844 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193467
2022-12-08 21:29:42.844 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193399::seqNum:0; Time (ms) since creation: 69; Size of bundle payload (bytes):646
2022-12-08 21:29:42.849 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:130193261::seqNum:0; Time (ms) since creation: 212; Size of bundle payload (bytes):338
2022-12-08 21:29:42.849 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:130193261::seqNum:0; Time (ms) since creation: 212
2022-12-08 21:29:42.849 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193261
2022-12-08 21:29:42.849 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.857 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50312
2022-12-08 21:29:42.859 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "forwarding"
},
"reportToNode" : {
"id" : "forwarding"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193330
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMjYxCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.867 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193451::seqNum:0"
2022-12-08 21:29:42.867 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193451::seqNum:0; Time (ms) since creation: 40
2022-12-08 21:29:42.867 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193451
2022-12-08 21:29:42.868 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193451
2022-12-08 21:29:42.868 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193451
2022-12-08 21:29:42.870 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193494::seqNum:0
2022-12-08 21:29:42.871 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193494
2022-12-08 21:29:42.871 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193494
2022-12-08 21:29:42.871 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193451::seqNum:0; Time (ms) since creation: 44; Size of bundle payload (bytes):936
2022-12-08 21:29:42.896 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:forwarding::to:a::creationTime:130193330::seqNum:0; Time (ms) since creation: 190; Size of bundle payload (bytes):312
2022-12-08 21:29:42.896 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:forwarding::to:a::creationTime:130193330::seqNum:0; Time (ms) since creation: 190
2022-12-08 21:29:42.897 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193330
2022-12-08 21:29:42.897 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.903 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193344
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "LF8XlS4+lGhChbmtMk99Wk2oigcBzQ2RbCmvc67K34mWz08wmtBrpIf7bA1KA5cLU2vSgBh+4TtXB+JS5GuwDp57z+svGMVn8+v7I0r9OSQ4rmdldEi3/7v1SiYje2LynIvxX9dIEIOJY3kkEKNe5lHhGCBvoTcBJkvVuA2qT+d//dlNfX6T0P7QL/wdrEnJxY+82ariCCoXp0s3JvJewElDmz+TOdZOPwdA6hkyfzIQZoLPhw4ms4Wc1DFVLUhCjjEB847rT8npDy6qTVHXJoCI7jatpJnEVixqX2c+gqP6PVsgaZOrztDNRVMnWVaguzl5vIiGDk3pD9Y5jMmdT8gN4D8eajKMeW8BorqMqmc30QyPx+voT43T/A/YfA6ZS1SE6TCfL8afsdsbO3NxisEB3DfcZtlMB8GBW8PopKJpAV9MJSVfjbHxN2GFuKbJ929KM3/5GxAQmg3+qug68BrA9AMEjrmBUhBKDJad3qXOmOFcLDnVLtUiwolMm1S87sQEQ9v3LmvZIyivEPktAQwIjMWggz+vdXyk303rt2aE7LDkOwkjsc/6b965x+Gozt6QeGBDmuCHTwg+tqc8DhQqG3a6/bvBc24quftMaHsEqgkJMkQNM5HGRVBzLFeu5kXSs3DCVso5hdYJZMMNSfCIzH6hF/LzklhE8NSaH+fZ66dHeiKyOkZlxu8nnW4Aq6MEX32JNS95Y6QRDKLX7N0Jysx7A6Ns9hY4+5pUwTGg8fIZWSTDmquWkb211zD6eX45QRayY3JXF9TJtsxZdg9QkRwMxixdgS2IHUug1QZGF/gUdT7Qfau6e3yaQQjUi+gRIjBEALXH+ZZSrKf2cXHfh/jF6CGL6l6R0gnJNcZ953QmpiB9Aj8+6D2e6d7GPb6VZbed+/k9biRS52LgMJ+CrogQTpx5HFmbbklK0L9/ZemdAYPZh4Qxq6e/mdgjgU8XgFYEnM6HPjkgub6qMSCQ9IXbkzWv0XI0U0Cz4v4H6iAGIqU=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.917 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50324
2022-12-08 21:29:42.932 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:130193344::seqNum:0; Time (ms) since creation: 212; Size of bundle payload (bytes):758
2022-12-08 21:29:42.933 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:130193344::seqNum:0; Time (ms) since creation: 213
2022-12-08 21:29:42.933 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193344
2022-12-08 21:29:42.933 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.03609920506013986
2022-12-08 21:29:42.933 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.944 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193504::seqNum:0"
2022-12-08 21:29:42.945 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.6767242024990028
2022-12-08 21:29:42.945 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193504::seqNum:0; Time (ms) since creation: 65; Size of bundle payload (bytes):460
2022-12-08 21:29:42.945 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.47019665965941526
2022-12-08 21:29:42.946 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193504::seqNum:0; Time (ms) since creation: 66
2022-12-08 21:29:42.946 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193504
2022-12-08 21:29:42.946 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193504
2022-12-08 21:29:42.946 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193504
2022-12-08 21:29:42.949 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "forwarding"
},
"reportToNode" : {
"id" : "forwarding"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193384
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMzQ0CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.949 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193573::seqNum:0
2022-12-08 21:29:42.949 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193573
2022-12-08 21:29:42.950 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193573
2022-12-08 21:29:42.953 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50336
2022-12-08 21:29:42.959 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193553::seqNum:0"
2022-12-08 21:29:42.960 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193553::seqNum:0; Time (ms) since creation: 31
2022-12-08 21:29:42.960 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193553
2022-12-08 21:29:42.960 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193553
2022-12-08 21:29:42.960 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193553
2022-12-08 21:29:42.963 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193587::seqNum:0
2022-12-08 21:29:42.963 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193587
2022-12-08 21:29:42.963 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193587
2022-12-08 21:29:42.963 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193553::seqNum:0; Time (ms) since creation: 34; Size of bundle payload (bytes):442
2022-12-08 21:29:42.979 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:forwarding::to:a::creationTime:130193384::seqNum:0; Time (ms) since creation: 219; Size of bundle payload (bytes):312
2022-12-08 21:29:42.979 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:forwarding::to:a::creationTime:130193384::seqNum:0; Time (ms) since creation: 219
2022-12-08 21:29:42.979 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193384
2022-12-08 21:29:42.980 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.992 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193295
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "QdMTDXdTOoSLKnExrjBG/Q6zi6XIScJQ1r78HLuamyJ6nfsOsYexueaRZylrtg+NHH1jefERolBnU6bdhFML4+SAu5bpaTj1SyPlu3/getlPwpPpxwlgDiLFAKFHvfbn1ppL+ef+kNuuNA/0QHbXi6dcZO51Ruqztm8E04orJD+WYnoRVtCCJxqJ+WyGqGmyVquq0EhMDcEnWQ==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.008 INFO DTCP.DTCPServer run Connected to client! /10.0.0.3:45388
2022-12-08 21:29:43.016 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50342
2022-12-08 21:29:43.037 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:130193295::seqNum:0; Time (ms) since creation: 366; Size of bundle payload (bytes):154
2022-12-08 21:29:43.037 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:130193295::seqNum:0; Time (ms) since creation: 366
2022-12-08 21:29:43.037 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193295
2022-12-08 21:29:43.037 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.8191092659133838
2022-12-08 21:29:43.038 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.039 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:130193594::seqNum:0"
2022-12-08 21:29:43.040 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.014461946683216764
2022-12-08 21:29:43.040 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:130193594::seqNum:0; Time (ms) since creation: 70
2022-12-08 21:29:43.040 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193594
2022-12-08 21:29:43.041 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193594
2022-12-08 21:29:43.041 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:130193594::seqNum:0; Time (ms) since creation: 71; Size of bundle payload (bytes):312
2022-12-08 21:29:43.044 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193602::seqNum:0"
2022-12-08 21:29:43.044 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.08473426521489191
2022-12-08 21:29:43.045 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193602::seqNum:0; Time (ms) since creation: 67; Size of bundle payload (bytes):566
2022-12-08 21:29:43.045 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.08335033241908463
2022-12-08 21:29:43.047 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193602::seqNum:0; Time (ms) since creation: 69
2022-12-08 21:29:43.047 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193602
2022-12-08 21:29:43.047 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193602
2022-12-08 21:29:43.048 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193602
2022-12-08 21:29:43.048 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "forwarding"
},
"reportToNode" : {
"id" : "forwarding"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193407
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMjk1CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.050 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193674::seqNum:0
2022-12-08 21:29:43.050 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193674
2022-12-08 21:29:43.050 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193674
2022-12-08 21:29:43.079 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:forwarding::to:a::creationTime:130193407::seqNum:0; Time (ms) since creation: 296; Size of bundle payload (bytes):312
2022-12-08 21:29:43.080 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:forwarding::to:a::creationTime:130193407::seqNum:0; Time (ms) since creation: 297
2022-12-08 21:29:43.080 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193407
2022-12-08 21:29:43.080 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.084 INFO DTCP.DTCPServer run Connected to client! /10.0.0.3:45402
2022-12-08 21:29:43.086 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193321
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMTQ0CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.096 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:130193639::seqNum:0"
2022-12-08 21:29:43.097 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:130193639::seqNum:0; Time (ms) since creation: 82
2022-12-08 21:29:43.098 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193639
2022-12-08 21:29:43.098 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193639
2022-12-08 21:29:43.098 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:130193639::seqNum:0; Time (ms) since creation: 83; Size of bundle payload (bytes):312
2022-12-08 21:29:43.099 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50344
2022-12-08 21:29:43.109 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193649::seqNum:0"
2022-12-08 21:29:43.110 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.8978312371227671
2022-12-08 21:29:43.110 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.6354328888091053
2022-12-08 21:29:43.110 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193649::seqNum:0; Time (ms) since creation: 85
2022-12-08 21:29:43.110 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193649
2022-12-08 21:29:43.111 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193649
2022-12-08 21:29:43.111 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193649
2022-12-08 21:29:43.113 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193737::seqNum:0
2022-12-08 21:29:43.113 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193737
2022-12-08 21:29:43.113 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193737
2022-12-08 21:29:43.114 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193649::seqNum:0; Time (ms) since creation: 89; Size of bundle payload (bytes):960
2022-12-08 21:29:43.133 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130193321::seqNum:0; Time (ms) since creation: 436; Size of bundle payload (bytes):312
2022-12-08 21:29:43.134 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130193321::seqNum:0; Time (ms) since creation: 437
2022-12-08 21:29:43.134 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193321
2022-12-08 21:29:43.134 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.007206235958613916
2022-12-08 21:29:43.134 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.144 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193390
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMTg2CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.148 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50360
2022-12-08 21:29:43.157 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193709::seqNum:0"
2022-12-08 21:29:43.157 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193709::seqNum:0; Time (ms) since creation: 72
2022-12-08 21:29:43.157 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193709
2022-12-08 21:29:43.158 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193709
2022-12-08 21:29:43.158 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193709
2022-12-08 21:29:43.160 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193709::seqNum:0; Time (ms) since creation: 75; Size of bundle payload (bytes):559
2022-12-08 21:29:43.160 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193784::seqNum:0
2022-12-08 21:29:43.160 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193784
2022-12-08 21:29:43.161 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193784
2022-12-08 21:29:43.175 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130193390::seqNum:0; Time (ms) since creation: 409; Size of bundle payload (bytes):312
2022-12-08 21:29:43.176 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130193390::seqNum:0; Time (ms) since creation: 410
2022-12-08 21:29:43.176 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193390
2022-12-08 21:29:43.176 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.183 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193399
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "g03zxuvvOsy7cJ056OqIumSwQxlwtu8Yi+51mIwvEXO5a+RdzJyEgKdfUMwxLoQVzsiNS4LNQb36NBnTDtrfnEO1eDYktrd1HroD+cFpnHBYyFCqTV02DEbmgjpeIHrxa9jq9tOjj+Bd14P+yhM6DL3kkFg95R8lb1syDkqE7Kt8V3wacqvbt0gsMhFWmRQ9/eMjdLNp2DBawb2Gs5eKpkiFkvDLcrEk49vFz8DkAlrZYFGuhZ6JgU8xO2IPa7ElpZHGfl1SfbTa111MNzTm11ofh+l54V+ieVmETudL+TXrpTrr2XfaXPqQhqw+QKk+S3GTRM0EsjtptRZ8WtNwvngRxqyn2Fy0tTcVVS+yjUe6qhfYsuln95RWknqZRLsgLIbKHmL0tj6jjPqQs+pBgnumJI/M6qmA0DwZ3mk7LOLtZMQ+WGflTftAb6RLGHlTpVoz8LQWI1HbPhETpKo6YiQa6EkLTUrFHucbSMud//wTfetfdjpgPdSCCjS4KuUTP4peqbJy4v4Ncx6a2ciFpOQ3amMTvBWZwIbMqyaY4QgtjvIbuVn+Le5KD61z2Jr7++36qwBFVlsGucvrBAKy3uV/QVQ8Cinei+dn/2ZTkkB/D3RCpjwE4vOgiYV86PhG39bAUpC1JpjSBO1P165NzVz+qfzgEgjTN5ehg0vLpnWZ1Cqbuyg1SlZi/nW+RCROwQKqg4BaFSFmDoT1QwjbuBNBJAX3DvjLzBPuHmaaYwihT6+VybMIaXlrIj/JCZJfUzctUDMEu7mPYcGT7/YhTTIXBNv2hii0Sm4N5FfFet3jAS/Tknfz7R05/fTMSV1ScK9AmbKO0iobKsgz+4mNy04HOZjpXQ==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.189 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50368
2022-12-08 21:29:43.211 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193750::seqNum:0"
2022-12-08 21:29:43.211 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.5005239157120028
2022-12-08 21:29:43.212 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.9159547650257868
2022-12-08 21:29:43.212 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193750::seqNum:0; Time (ms) since creation: 86
2022-12-08 21:29:43.212 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193750
2022-12-08 21:29:43.212 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193750
2022-12-08 21:29:43.212 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193750
2022-12-08 21:29:43.215 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193839::seqNum:0
2022-12-08 21:29:43.215 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193839
2022-12-08 21:29:43.215 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193839
2022-12-08 21:29:43.215 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193750::seqNum:0; Time (ms) since creation: 89; Size of bundle payload (bytes):567
2022-12-08 21:29:43.221 INFO DTCP.DTCPServer run Connected to client! /10.0.0.3:45414
2022-12-08 21:29:43.229 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:130193777::seqNum:0"
2022-12-08 21:29:43.229 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.988747844089833
2022-12-08 21:29:43.230 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.9848989126852045
2022-12-08 21:29:43.230 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:130193777::seqNum:0; Time (ms) since creation: 77
2022-12-08 21:29:43.230 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193777
2022-12-08 21:29:43.230 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193777
2022-12-08 21:29:43.230 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:130193777::seqNum:0; Time (ms) since creation: 77; Size of bundle payload (bytes):312
2022-12-08 21:29:43.240 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:130193399::seqNum:0; Time (ms) since creation: 465; Size of bundle payload (bytes):646
2022-12-08 21:29:43.240 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:130193399::seqNum:0; Time (ms) since creation: 465
2022-12-08 21:29:43.241 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193399
2022-12-08 21:29:43.241 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.245 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "forwarding"
},
"reportToNode" : {
"id" : "forwarding"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193467
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMzk5CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.252 INFO DTCP.DTCPServer run Connected to client! /10.0.0.1:50372
2022-12-08 21:29:43.262 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193796::seqNum:0"
2022-12-08 21:29:43.263 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193796::seqNum:0; Time (ms) since creation: 91
2022-12-08 21:29:43.263 INFO BPv7.BPAReceiver run Sending status report for forwarded bundle, timestamp: 130193796
2022-12-08 21:29:43.263 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193796
2022-12-08 21:29:43.263 INFO BPv7.BPAReceiver run Added bundle to send to DTCP, timestamp: 130193796
2022-12-08 21:29:43.266 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:forwarding::to:a::creationTime:130193890::seqNum:0
2022-12-08 21:29:43.266 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193890
2022-12-08 21:29:43.266 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193890
2022-12-08 21:29:43.266 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193796::seqNum:0; Time (ms) since creation: 94; Size of bundle payload (bytes):979
2022-12-08 21:29:43.275 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:forwarding::to:a::creationTime:130193467::seqNum:0; Time (ms) since creation: 432; Size of bundle payload (bytes):312
2022-12-08 21:29:43.276 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:forwarding::to:a::creationTime:130193467::seqNum:0; Time (ms) since creation: 433
2022-12-08 21:29:43.276 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193467
2022-12-08 21:29:43.276 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.279 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {