-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger_a.log.1001
More file actions
7568 lines (7568 loc) · 909 KB
/
logger_a.log.1001
File metadata and controls
7568 lines (7568 loc) · 909 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 20:24:26.286 INFO SendStrings.App main Starting main app
2022-12-08 20:24:26.710 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 20:24:26.711 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 20:24:26.724 INFO Configs.ConvergenceLayerParams readConvergenceLayerConfigFile Parsed config file info
2022-12-08 20:24:26.725 INFO Configs.ConvergenceLayerParams getInstance Created ConvergenceLayerParams singleton
2022-12-08 20:24:26.725 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 20:24:26.726 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 20:24:26.728 INFO BPv7.AdminElementStatusReportBuilder getInstance Created AdminElementStatusReportBuilder singleton
2022-12-08 20:24:26.729 INFO BPv7.AdminElementStatusReportRcode getInstance Created AdminElementStatusReportRcode singleton
2022-12-08 20:24:26.731 INFO BPv7.AdminElement getInstance Created AdminElement singleton
2022-12-08 20:24:26.733 INFO BPv7.ApplicationAgent getInstance Created ApplicationAgent singleton
2022-12-08 20:24:26.734 INFO SendStrings.App sendSync Starting AA and subclass threads
2022-12-08 20:24:26.734 INFO SendStrings.App sendSync Sending first sync from host a
2022-12-08 20:24:26.735 INFO DTCP.DTCP getInstance Created DTCP singleton
2022-12-08 20:24:26.735 INFO BPv7.BPAUtils getInstance Created BPA singleton
2022-12-08 20:24:26.746 INFO BPv7.BPA <init> Started BPA sending and receiving threads
2022-12-08 20:24:26.746 INFO BPv7.BPA getInstance Created BPA singleton
2022-12-08 20:24:26.753 INFO DTCP.DTCPServer run DTCP Server Started
2022-12-08 20:24:26.758 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:126277372::seqNum:0
2022-12-08 20:24:26.759 INFO BPv7.BPA send saving the bundle, timestamp: 126277372
2022-12-08 20:24:26.773 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.637415795276256
2022-12-08 20:24:26.774 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126277372
2022-12-08 20:24:26.774 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:forwarding::creationTime:126277398::seqNum:0
2022-12-08 20:24:26.775 INFO BPv7.BPA send saving the bundle, timestamp: 126277398
2022-12-08 20:24:26.775 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126277398
2022-12-08 20:24:26.774 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:26.829 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" : 126277372
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "U2NlbmFyaW8gPSAxMDAxOjogIkxvdyBkZW5zaXR5IG9mIHBhY2tldHMsIHNtYWxsIHBhY2tldHMsIGhpZ2ggZGVuc2l0eSBvZiBleHBlY3RlZCBkb3ducyI=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:26.867 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:126277372::seqNum:0; Time (ms) since creation: 112; Size of bundle payload (bytes):89
2022-12-08 20:24:26.887 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:126277372::seqNum:0; Time (ms) since creation: 133
2022-12-08 20:24:26.888 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126277372
2022-12-08 20:24:26.888 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.7598203210501943
2022-12-08 20:24:26.888 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:26.916 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 0,
"destNode" : {
"id" : "forwarding"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 126277398
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "U2NlbmFyaW8gPSAxMDAxOjogIkxvdyBkZW5zaXR5IG9mIHBhY2tldHMsIHNtYWxsIHBhY2tldHMsIGhpZ2ggZGVuc2l0eSBvZiBleHBlY3RlZCBkb3ducyI=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:26.922 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:forwarding::creationTime:126277398::seqNum:0; Time (ms) since creation: 148; Size of bundle payload (bytes):89
2022-12-08 20:24:26.945 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:forwarding::creationTime:126277398::seqNum:0; Time (ms) since creation: 171
2022-12-08 20:24:26.946 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126277398
2022-12-08 20:24:27.094 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54760
2022-12-08 20:24:27.126 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:126277633::seqNum:0"
2022-12-08 20:24:27.126 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.5400192879111063
2022-12-08 20:24:27.127 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:126277633::seqNum:0; Time (ms) since creation: 118; Size of bundle payload (bytes):89
2022-12-08 20:24:27.127 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:126277633::seqNum:0; Time (ms) since creation: 118
2022-12-08 20:24:27.128 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 126277633
2022-12-08 20:24:27.128 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 126277633
2022-12-08 20:24:27.129 INFO SendStrings.App sendSync Forwarding SYNC'd!!
2022-12-08 20:24:27.128 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:126277633::seqNum:0; Time (ms) since creation: 119; Size of bundle payload (bytes):89
2022-12-08 20:24:27.309 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54776
2022-12-08 20:24:27.337 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:126277820::seqNum:0"
2022-12-08 20:24:27.338 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.5930952843152826
2022-12-08 20:24:27.339 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:126277820::seqNum:0; Time (ms) since creation: 143
2022-12-08 20:24:27.339 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 126277820
2022-12-08 20:24:27.339 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:126277820::seqNum:0; Time (ms) since creation: 143; Size of bundle payload (bytes):89
2022-12-08 20:24:27.340 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 126277820
2022-12-08 20:24:27.340 INFO SendStrings.App sendSync B SYNC'd!!
2022-12-08 20:24:27.341 INFO SendStrings.App sendSync Host a finished with SYNC send
2022-12-08 20:24:27.341 WARNING SendStrings.App main Host a:: Starting scenario #1001:: "Low density of packets, small packets, high density of expected downs"
2022-12-08 20:24:27.344 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670531067342
2022-12-08 20:24:27.345 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:126277969::seqNum:0
2022-12-08 20:24:27.345 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 126277969
2022-12-08 20:24:27.346 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.45247027942583906
2022-12-08 20:24:27.346 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:27.351 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" : 126277969
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "InO+VC4/MXU85fn/00naoN0WhYHT0FOn4+dPXCqajf5yiosFBqBpfJspqk9GxjTmvMCIlmseHHttUq72L1Upz+9+6jsmfa/Ffc2tuAhc0AvtoGimnzyKiIAXOKNwHVIk2M6XcYl0P3FrAN8xKrsh4uh3efEfGKejbNSQXf/dGzN9JpDvsLp/WR2gt4zidw12d4Hcg16Yyab3A4wEVQTiq8WOmKci58LpBEv9bwzrynI8C8yuErRppdi4d4jP6KeBqestDObQ59jBQu2zpKISnClbdH24lZEJPSgUwSzH7Ri3ynVuCnto4KseEsJNYnooBeaSTA3QnmtFBAJGEUf8AZCBCgMgEapITk4t9s2zIB7u1VWZlqJFeIemsXOFlOggapy8L7zzn6vna96AjgcKNtLgNXEZTggFigodPnUI02uOnKMt99QTn+le8vcfZdE09G7EqSJ5lIdKmNaRMWEiNtsGGFzv5CQQek6Ek7GrjhluEagsf6S4gLq+Nsvtig==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:27.352 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126277969
2022-12-08 20:24:27.354 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:126277820::seqNum:0; Time (ms) since creation: 158; Size of bundle payload (bytes):89
2022-12-08 20:24:27.356 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:126277969::seqNum:0; Time (ms) since creation: 11; Size of bundle payload (bytes):382
2022-12-08 20:24:27.357 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:126277969::seqNum:0; Time (ms) since creation: 12
2022-12-08 20:24:27.358 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126277969
2022-12-08 20:24:27.389 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54792
2022-12-08 20:24:27.418 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:126278005::seqNum:0"
2022-12-08 20:24:27.420 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.12784471563128352
2022-12-08 20:24:27.421 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:126278005::seqNum:0; Time (ms) since creation: 40
2022-12-08 20:24:27.421 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:27.421 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:126278005::seqNum:0; Time (ms) since creation: 40; Size of bundle payload (bytes):312
2022-12-08 20:24:27.436 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:126278005::seqNum:0; Time (ms) since creation: 55; Size of bundle payload (bytes):312
2022-12-08 20:24:27.452 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.36221970887919486
2022-12-08 20:24:27.453 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:27.455 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126277969
2022-12-08 20:24:27.460 INFO BPv7.BPA resendBundle Resending bundle with timestamp 126277969
2022-12-08 20:24:27.460 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" : 126277969
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "InO+VC4/MXU85fn/00naoN0WhYHT0FOn4+dPXCqajf5yiosFBqBpfJspqk9GxjTmvMCIlmseHHttUq72L1Upz+9+6jsmfa/Ffc2tuAhc0AvtoGimnzyKiIAXOKNwHVIk2M6XcYl0P3FrAN8xKrsh4uh3efEfGKejbNSQXf/dGzN9JpDvsLp/WR2gt4zidw12d4Hcg16Yyab3A4wEVQTiq8WOmKci58LpBEv9bwzrynI8C8yuErRppdi4d4jP6KeBqestDObQ59jBQu2zpKISnClbdH24lZEJPSgUwSzH7Ri3ynVuCnto4KseEsJNYnooBeaSTA3QnmtFBAJGEUf8AZCBCgMgEapITk4t9s2zIB7u1VWZlqJFeIemsXOFlOggapy8L7zzn6vna96AjgcKNtLgNXEZTggFigodPnUI02uOnKMt99QTn+le8vcfZdE09G7EqSJ5lIdKmNaRMWEiNtsGGFzv5CQQek6Ek7GrjhluEagsf6S4gLq+Nsvtig==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:27.464 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:126277969::seqNum:0; Time (ms) since creation: 119; Size of bundle payload (bytes):382
2022-12-08 20:24:27.465 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:126277969::seqNum:0; Time (ms) since creation: 120
2022-12-08 20:24:27.465 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126277969
2022-12-08 20:24:27.499 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54804
2022-12-08 20:24:27.519 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670531067519
2022-12-08 20:24:27.520 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.521 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 126278144
2022-12-08 20:24:27.521 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126278144
2022-12-08 20:24:27.521 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.11969958097000255
2022-12-08 20:24:27.522 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.522 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.523 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.523 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.523 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.523 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.524 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.524 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.524 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.524 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.525 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.525 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.525 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.525 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.526 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.526 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.526 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.526 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.527 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.527 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.527 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.527 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.529 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.529 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.531 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.537 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.537 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.539 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:126278110::seqNum:0"
2022-12-08 20:24:27.539 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.5103245746835752
2022-12-08 20:24:27.539 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:126278110::seqNum:0; Time (ms) since creation: 53
2022-12-08 20:24:27.539 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:27.540 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:126278110::seqNum:0; Time (ms) since creation: 54; Size of bundle payload (bytes):312
2022-12-08 20:24:27.544 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.544 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.545 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.545 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.552 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.552 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.552 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.550 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:126278110::seqNum:0; Time (ms) since creation: 61; Size of bundle payload (bytes):312
2022-12-08 20:24:27.552 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.554 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.558 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.559 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.559 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.559 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.559 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.560 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.560 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.560 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.560 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.560 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.561 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.561 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.561 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.566 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.566 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.566 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.567 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.567 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.567 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.567 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.568 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.568 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.568 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.568 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.569 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.569 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.569 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.569 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.582 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.582 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.582 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.582 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.583 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.583 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.583 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.583 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.583 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.584 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.584 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.584 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.584 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.585 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.585 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.585 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.585 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.597 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.597 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.597 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.605 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.605 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.002131855563239693
2022-12-08 20:24:27.606 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.606 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.606 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.609 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.610 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.610 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.611 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.611 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.627 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.629 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.632 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.633 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.633 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.633 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.633 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.634 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.634 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.634 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.634 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.634 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.635 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.635 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.642 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.642 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.642 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.642 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.643 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.643 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.643 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.643 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.643 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.644 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.644 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.644 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.644 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.644 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.645 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.645 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.645 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.653 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.665 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.665 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.666 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.666 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.667 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.667 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.667 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.668 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.668 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.668 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.671 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.672 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.672 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.673 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.673 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.674 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.676 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.677 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.677 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.677 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.678 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.681 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.682 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.682 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.682 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.682 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.682 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.683 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.683 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.683 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.683 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.683 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.684 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.684 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.684 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.684 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.684 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.685 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.685 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.685 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.685 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.685 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.686 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.686 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.686 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.686 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.686 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.686 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.692 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.692 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126278144::seqNum:0
2022-12-08 20:24:27.704 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.8355652748106563
2022-12-08 20:24:27.704 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:27.717 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" : 126278144
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "m2IU/qlIQTHEr+MPPF6yOkH4hU1Hxp0fnUKTyGtdKGPXGecF5pqxMshtYNAqA6TEqoqUDoYZ+k8h130tHPChe4JakEO4+j7OJkm/VVHwEWoHC/vPLCDvAv/wP1v/+oY5YCcvDoh9TXu9+B8Zcfk67xwyDPN6OkMD5gELqD+JE8VVDWjbEGJpOzFETW2+LfTjEkFs6EazLVaNVFVXuqR9r+3DFlTgZhv2aNjcG2JSIQn1KWyQev6Jfiyp0t6D+Grz1V1jBN1wgTENLMWh+SzSbTVIcZ+TR8SCAeIzUmFDiBBfCR26vYHlPRB0G54Tns6lJqlrJSNQWbXNv3/BT5qstgJhfF6M/sy3I6jr6bWLmyp/5Jx1T54DoVSuFj76ejLY2Euv2ilGOnk/l1z82JtCT9+EMVJR++/C4aCz6kaucIYfbtBgyZcasB0MkrLpvmYuQwBvbfdBk+6//vvyyfp8rrkpLEV0SRrVvgH/TkiKb6GSQHgIIn37T8GfcIdPp6Knqy71bYNOWavk5xmIyWLVnhG86rVJVrYCu9jRAlTNNoihm8pBKA66Rpb3pMo1d9hU7x3WDPPTphwGmEgujXu0YGmusefmicRToJf8Z8qKLPW7ftBmQGhk3QCS5jFfqErQdARlnRXUV4EQ0R1Ft49jbegsKZphT/1rin1PH2b0ReFYaxvjYNaj+brTVsOhESE3UAV8/xw+Ni6IYJ0s8DwAv1BBKD5GaCVNtYrTByFwYAKuWyf4SWChTWXs0aWA/j+iumUXXpy1ng/dQHh7ROlXOyJzZplXpyZwjOpmU0uHMUSYuSaCCfVFrE9VvFgJdMJUsYYSFsdo1wLwuM+UvvljQxAwPxeIbqSj7/92Yedqmk7DYUz/sEwnt4XW/bX2HnQp7G7PqOrR33rlJdBiRAaPKKOIkHo6jOT7xH86F0Y=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:27.720 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670531067720
2022-12-08 20:24:27.721 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:126278345::seqNum:0
2022-12-08 20:24:27.721 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 126278345
2022-12-08 20:24:27.722 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126278345
2022-12-08 20:24:27.736 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54818
2022-12-08 20:24:27.737 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:126278144::seqNum:0; Time (ms) since creation: 217; Size of bundle payload (bytes):701
2022-12-08 20:24:27.742 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:126278144::seqNum:0; Time (ms) since creation: 222
2022-12-08 20:24:27.742 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126278144
2022-12-08 20:24:27.743 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:27.759 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" : 126278345
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "/6a+zgPx9xkjgIlMK1vnlrWGNlEuDUnIt1NCd8FFAmfn8H+WdUqnGT1/wSq7NfhMfWPxbty5GcplQ2/rysTWxEG1Q5Dz1q5j7Qw7d3jPNxCNfNE3fvqwD3ycH99s4r5eRq3ZylfT3OGuVyGo7bepbQiiecWTCQzRbxe4l6SJrK2iBKIj5G9EU4wH1wylOpuyxEmNGz1nPleHa9oOsJ3sePezdWa7WHsRqlzM57NbNWrMEbSNw2kv4V7V7tyTPow/WKtPT2fOz++8nYqoK+ShN98Sm3ANXkk/ZO3nz5QdchrOzAB3Uk75pI7WTvmmfhVG7gLeKSs4vNxezjp9v+GdU9a2eFNNywX+e+bNpMLjUKCiJwKGz9M1X+GLRUNinD9L4V5tOwx2hW/23vuRoBZrodMY7TbOxDGA2/idu5JNmefTe2s=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:27.762 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:126278345::seqNum:0; Time (ms) since creation: 41; Size of bundle payload (bytes):323
2022-12-08 20:24:27.762 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:126278345::seqNum:0; Time (ms) since creation: 41
2022-12-08 20:24:27.762 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126278345
2022-12-08 20:24:27.789 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:126278190::seqNum:0"
2022-12-08 20:24:27.798 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.47619027224951926
2022-12-08 20:24:27.798 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:126278190::seqNum:0; Time (ms) since creation: 232
2022-12-08 20:24:27.798 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:27.798 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:126278190::seqNum:0; Time (ms) since creation: 232; Size of bundle payload (bytes):312
2022-12-08 20:24:27.805 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54826
2022-12-08 20:24:27.806 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:126278190::seqNum:0; Time (ms) since creation: 239; Size of bundle payload (bytes):312
2022-12-08 20:24:27.840 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54838
2022-12-08 20:24:27.873 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670531067873
2022-12-08 20:24:27.874 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:126278498::seqNum:0
2022-12-08 20:24:27.874 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 126278498
2022-12-08 20:24:27.875 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126278498
2022-12-08 20:24:27.875 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.2628110226446748
2022-12-08 20:24:27.875 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:27.876 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:126278424::seqNum:0"
2022-12-08 20:24:27.876 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.5284360219461829
2022-12-08 20:24:27.877 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:126278424::seqNum:0; Time (ms) since creation: 77
2022-12-08 20:24:27.878 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:27.878 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:126278424::seqNum:0; Time (ms) since creation: 78; Size of bundle payload (bytes):312
2022-12-08 20:24:27.884 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" : 126278498
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ElOBgKK3QkULvgKVpHjcuIXAmSkb8LauwDBE3blB1Cwgmkpk62H3RoTA6Ci0yHUuROa4SMdC8kHXWXs7S7VDO3UrZBDpAj1ILtje5SHFeLdPhyrq8EphKgr4YFBK1gYAusAC8QR0YfpF1kHVDpYdbFzJCOg93klIrpBj",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:27.885 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:126278424::seqNum:0; Time (ms) since creation: 77; Size of bundle payload (bytes):312
2022-12-08 20:24:27.888 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:126278498::seqNum:0; Time (ms) since creation: 14; Size of bundle payload (bytes):123
2022-12-08 20:24:27.888 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:126278498::seqNum:0; Time (ms) since creation: 14
2022-12-08 20:24:27.889 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126278498
2022-12-08 20:24:27.925 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54850
2022-12-08 20:24:27.944 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:126278414::seqNum:0"
2022-12-08 20:24:27.944 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.15771553192285503
2022-12-08 20:24:27.945 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:126278414::seqNum:0; Time (ms) since creation: 155
2022-12-08 20:24:27.945 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:27.945 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:126278414::seqNum:0; Time (ms) since creation: 155; Size of bundle payload (bytes):312
2022-12-08 20:24:27.949 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:126278414::seqNum:0; Time (ms) since creation: 159; Size of bundle payload (bytes):312
2022-12-08 20:24:27.958 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:126278471::seqNum:0"
2022-12-08 20:24:27.959 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:126278471::seqNum:0; Time (ms) since creation: 112; Size of bundle payload (bytes):312
2022-12-08 20:24:27.959 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:126278471::seqNum:0; Time (ms) since creation: 112
2022-12-08 20:24:27.959 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:27.959 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:126278471::seqNum:0; Time (ms) since creation: 112; Size of bundle payload (bytes):312
2022-12-08 20:24:27.966 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54862
2022-12-08 20:24:27.979 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54876
2022-12-08 20:24:28.010 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:126278488::seqNum:0"
2022-12-08 20:24:28.011 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.20122293044813733
2022-12-08 20:24:28.011 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:126278488::seqNum:0; Time (ms) since creation: 147
2022-12-08 20:24:28.011 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.011 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:126278488::seqNum:0; Time (ms) since creation: 147; Size of bundle payload (bytes):312
2022-12-08 20:24:28.019 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:126278529::seqNum:0"
2022-12-08 20:24:28.020 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:126278529::seqNum:0; Time (ms) since creation: 115
2022-12-08 20:24:28.020 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.020 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:126278529::seqNum:0; Time (ms) since creation: 115; Size of bundle payload (bytes):312
2022-12-08 20:24:28.022 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:126278529::seqNum:0; Time (ms) since creation: 117; Size of bundle payload (bytes):312
2022-12-08 20:24:28.030 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670531068030
2022-12-08 20:24:28.031 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:126278655::seqNum:0
2022-12-08 20:24:28.031 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 126278655
2022-12-08 20:24:28.031 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126278655
2022-12-08 20:24:28.032 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.685597927421339
2022-12-08 20:24:28.032 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:28.036 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" : 126278655
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "2Nv6F+PYguoT2Jg/O5OMMS+iUv7t8i4MxgloE9qBGkxLAEIzy4QlZZIvopfaeb5/iDIV+gYS7i5mFO8ylkhi2tVHn2s038B957Z0De5jkQXMrTMpeo4RI6mFKtBuRPAcA+qjOVGAiGuZqqfBr73McKEUT8SN/CoFvhnGIf34sK8z6BUZm2fuFyBX2/Q59liEwHrfDQoI80sHKOMFAbcEURr0h5BMIGdRaKMHhA14H0R31dNPvGDbtpxVtbbbnNYeP6aXVOP13e9TayE7jjHBIiYa7Sb2tkFfxxcTshMnY1J9BEzXozjLyjSqIMSFrWV/xazuuQzIVZmGBqSw0lAQK4VYTmkTkh6tVHWx7567JIhdHv5j2HoEIg3/lrRnRPmiWlb3T39pbwdwxhm06ajM44o7zCo2DHqvQRYKi8ObD3rTkmrYdVgl/TkWHoZZCAdcAGthEodLDVo9W46W/DD0HhxKOn1Kr4qN08bunkgLHh8DXKcBMuele9FpcVzNfun+NXZNqZMJ+wVWXmhZ8WnkFu0ECnQfye+T/sy2GRWRgdByNQKArPKfnlCRMBD124FArPHJpTqD7Xd7MeuXVIXpfvmAxlc0mm0fQh16zdcgJudB4tlB9su7kzNoO5Uxm/R1RzOhQY+YUa8ec3msgJjkIUK5YdnHCphNxTh5VvbUSDGrXmUNY8PFe9Ax1AO7azr7WLpAlqf0e6kDBPhkEihPG8rzibcbEjm7snCVT7pEATfCGCmrkjjgJHM2aw2WPcn6GbjfEmeSAKkV2nBYj5fQwdHVLv0JPHhi0Yow8Lk=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:28.040 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:126278655::seqNum:0; Time (ms) since creation: 9; Size of bundle payload (bytes):605
2022-12-08 20:24:28.043 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:126278488::seqNum:0; Time (ms) since creation: 179; Size of bundle payload (bytes):312
2022-12-08 20:24:28.055 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:126278655::seqNum:0; Time (ms) since creation: 24
2022-12-08 20:24:28.056 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126278655
2022-12-08 20:24:28.073 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54878
2022-12-08 20:24:28.084 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:126278654::seqNum:0"
2022-12-08 20:24:28.084 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:126278654::seqNum:0; Time (ms) since creation: 54
2022-12-08 20:24:28.085 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.085 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:126278654::seqNum:0; Time (ms) since creation: 55; Size of bundle payload (bytes):312
2022-12-08 20:24:28.086 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:126278654::seqNum:0; Time (ms) since creation: 56; Size of bundle payload (bytes):312
2022-12-08 20:24:28.117 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54884
2022-12-08 20:24:28.134 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:126278698::seqNum:0"
2022-12-08 20:24:28.135 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.47909610773007727
2022-12-08 20:24:28.135 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:126278698::seqNum:0; Time (ms) since creation: 61
2022-12-08 20:24:28.135 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.136 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:126278698::seqNum:0; Time (ms) since creation: 62; Size of bundle payload (bytes):312
2022-12-08 20:24:28.145 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:126278698::seqNum:0; Time (ms) since creation: 71; Size of bundle payload (bytes):312
2022-12-08 20:24:28.191 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54892
2022-12-08 20:24:28.203 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:126278787::seqNum:0"
2022-12-08 20:24:28.204 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.1387781306020387
2022-12-08 20:24:28.205 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:126278787::seqNum:0; Time (ms) since creation: 42
2022-12-08 20:24:28.205 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.206 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:126278787::seqNum:0; Time (ms) since creation: 43; Size of bundle payload (bytes):312
2022-12-08 20:24:28.210 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:126278787::seqNum:0; Time (ms) since creation: 47; Size of bundle payload (bytes):312
2022-12-08 20:24:28.223 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670531068223
2022-12-08 20:24:28.224 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:126278848::seqNum:0
2022-12-08 20:24:28.224 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 126278848
2022-12-08 20:24:28.224 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126278848
2022-12-08 20:24:28.225 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.37315312384995003
2022-12-08 20:24:28.225 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:28.235 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" : 126278848
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "tHoPc2rv42OT5/ilixyw1lRJNAZQA4umy/iME2gD2huEDznxh95bpjiDPFBDSrwMZ7gdg8pHGcQU4gvZPEVNsr96FTa2ZbAMBKNVhFFoG7CSTL66nFPqpFZcjfNcmnM/Cm3pZpiv4faKI2PeP0Olw50oSKvidfoNE2jJ81yJvIBtO95yY70ra142N61Lcp5W8HVNUYspULATJ51Nx9r56NOHJDBhJSv3mn4jcOh5O7wbFZXp2zse/eBALNeXY+JnjXmTfm8ha5BaPXxyPb51olDepInpQpTESVca8L2fMyLQhcZMf+02WkCOpD6kRZzS5HEjeiJk18jjis6Vnxx84TLI+zoWdshX8LO1SixLSonSmHNAxGrdY4MP85WUs9gZMes0/c5WLhuVdBOxGKGtnjc1K89kLiS8xdCiRGqULiOsoFyM1SiDcluGf/9e40Yr18JH52lJf8mJJveX4R+sqmiqcqxtIVDu8wt+Jyl6jfCXZ0JOjh92mHCZ504ukppwjHIATGoANd0SIR1jWGwhkAGUZR9kNOzPY7et1Xl9yh0lNFjHt04vAvF2cXH9AXWHwzMGKc3RDXoN+B7uXxQlW6OzYCjR7BrczgBa5t42GPkwboL4gv66dlyxrr5wRCxdWofvEUrxRc5qsFxp9/wPiL32J/KPxOrKBBwKz7Kgc8QC8PMjR9cx24pCrqf1TuPshe1jlNLHwDX7Z4ClHBxcCzhB9EsD/dvrdxu3bb0SSHfGT97PfyxPEf7gqCwclJy4+9mfo0pyJ899M6fU48uZYmL4YjCezT6KCyP5xBIrYTUvrXc1/xZCNm8T67AzHoS+XzC6bIvD16blXj3q0nILdR1azz2WCR/0IeGTdiwgi7Bnz9LVdjoka5SuJKEmZ92T8dSoRJplYK/tewSZgH1b/kns3wfhmCel4nlTdUo4GTE7nyy7KFJKBy+pdQOWaQwkdh1MMiX2Y5He6q2sbuVfkG+QwJ1zYJnlyVAjqAhivbSFSaRF7eAnlV1yzHg4p1h9ZS7/+T46VligyTRMJcE5Z68H3Fi4dV7BdFzMWz8q64PZlREeZaAA2A==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:28.241 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:126278848::seqNum:0; Time (ms) since creation: 17; Size of bundle payload (bytes):808
2022-12-08 20:24:28.248 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:126278848::seqNum:0; Time (ms) since creation: 24
2022-12-08 20:24:28.248 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126278848
2022-12-08 20:24:28.277 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54900
2022-12-08 20:24:28.309 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:126278880::seqNum:0"
2022-12-08 20:24:28.313 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.5301065420053966
2022-12-08 20:24:28.313 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:126278880::seqNum:0; Time (ms) since creation: 57
2022-12-08 20:24:28.313 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.314 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:126278880::seqNum:0; Time (ms) since creation: 58; Size of bundle payload (bytes):312
2022-12-08 20:24:28.321 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:126278880::seqNum:0; Time (ms) since creation: 65; Size of bundle payload (bytes):312
2022-12-08 20:24:28.418 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54910
2022-12-08 20:24:28.442 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:126278920::seqNum:0"
2022-12-08 20:24:28.442 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.41615920769682546
2022-12-08 20:24:28.446 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:126278920::seqNum:0; Time (ms) since creation: 150; Size of bundle payload (bytes):312
2022-12-08 20:24:28.446 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:126278920::seqNum:0; Time (ms) since creation: 150
2022-12-08 20:24:28.446 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.447 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:126278920::seqNum:0; Time (ms) since creation: 151; Size of bundle payload (bytes):312
2022-12-08 20:24:28.471 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670531068471
2022-12-08 20:24:28.471 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:126279095::seqNum:0
2022-12-08 20:24:28.472 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 126279095
2022-12-08 20:24:28.472 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126279095
2022-12-08 20:24:28.472 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.4005342121206077
2022-12-08 20:24:28.472 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:28.482 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" : 126279095
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "W8Xbrf907qmRmZZO7PItpVS5q0+s8BihH4urGXM9F219i1+CHry1DS55r+OhiTyLjq/llUAIYQidgKxkNpu4oho1yK+zKng4ilCOCWFO5e8noIRGzcyFRQjHH0FkCBF5ATcw8eWGk3UPJflQdw6IN0vZshbNa+PEsw2JOO3moTNWtO+pn0i4qpnEUSSVKOHGtWjUzbyc+4umXxd3Ylw27xB1vJoRjvxr+N9SwU7VXKw4+h8HnF1zHRlmCZx6olK+fCxiNS4gqS5x9WUymf9aKDoGBcFyv1sz/Xpn+I/nDJm4D82LLYfyUT4L3DNUreUrNFC5iMfCFwhzi/1iHr/x7Tk=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:28.484 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:126279095::seqNum:0; Time (ms) since creation: 13; Size of bundle payload (bytes):257
2022-12-08 20:24:28.484 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:126279095::seqNum:0; Time (ms) since creation: 13
2022-12-08 20:24:28.484 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126279095
2022-12-08 20:24:28.523 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54918
2022-12-08 20:24:28.555 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:126279124::seqNum:0"
2022-12-08 20:24:28.555 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.9253722656526205
2022-12-08 20:24:28.555 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:126279124::seqNum:0; Time (ms) since creation: 55
2022-12-08 20:24:28.555 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.556 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:126279124::seqNum:0; Time (ms) since creation: 56; Size of bundle payload (bytes):312
2022-12-08 20:24:28.560 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:126279124::seqNum:0; Time (ms) since creation: 60; Size of bundle payload (bytes):312
2022-12-08 20:24:28.575 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54926
2022-12-08 20:24:28.588 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:126279173::seqNum:0"
2022-12-08 20:24:28.590 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:126279173::seqNum:0; Time (ms) since creation: 41
2022-12-08 20:24:28.590 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.590 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:126279173::seqNum:0; Time (ms) since creation: 41; Size of bundle payload (bytes):312
2022-12-08 20:24:28.593 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:126279173::seqNum:0; Time (ms) since creation: 44; Size of bundle payload (bytes):312
2022-12-08 20:24:28.641 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670531068641
2022-12-08 20:24:28.642 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:126279266::seqNum:0
2022-12-08 20:24:28.642 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 126279266
2022-12-08 20:24:28.643 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126279266
2022-12-08 20:24:28.643 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.7186579075398752
2022-12-08 20:24:28.643 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:28.647 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" : 126279266
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "M7WHwSdEcd5Syr77SyLW80Zu1QIBnGNudQfTqP2T0xpaSrogpfiuOaUy/ZNaALk2eocVYhivoQuVkGkll+sywV7LOfhWer2+K9oe9DdfFjxGZdVwlvov73OEU1D4xEWjCFk8U9FkvQfWE7vi7wtOhWyH3z+FJii7i+54a/F7zhS3h505tYGIy0xiSaQ12/+ohQZPtjVls3ZN0UglN8rVIdu9uacjBQCbaTrMpd55f7Z8WjItuPevDp6QPTrgH7t5e+Lm6UDaNR67lSEoZc3BmBFxUMlmwtJeVyyUaeqLxy2wW+QTtf/CKwVV4wxo5GW4WBQKN1vxtjDFSsDCtTQFmyhd3D0v9NxMvHIBWSl3u643oZEx9KyNGicTZ7iDYF1NpA==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 20:24:28.654 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:126279266::seqNum:0; Time (ms) since creation: 12; Size of bundle payload (bytes):289
2022-12-08 20:24:28.655 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:126279266::seqNum:0; Time (ms) since creation: 13
2022-12-08 20:24:28.655 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 126279266
2022-12-08 20:24:28.690 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54942
2022-12-08 20:24:28.701 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:126279287::seqNum:0"
2022-12-08 20:24:28.701 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.643234843363414
2022-12-08 20:24:28.709 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:126279287::seqNum:0; Time (ms) since creation: 46
2022-12-08 20:24:28.710 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.710 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:126279287::seqNum:0; Time (ms) since creation: 47; Size of bundle payload (bytes):312
2022-12-08 20:24:28.711 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:126279287::seqNum:0; Time (ms) since creation: 48; Size of bundle payload (bytes):312
2022-12-08 20:24:28.756 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54946
2022-12-08 20:24:28.766 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:126279354::seqNum:0"
2022-12-08 20:24:28.767 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:126279354::seqNum:0; Time (ms) since creation: 37
2022-12-08 20:24:28.767 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 20:24:28.767 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:126279354::seqNum:0; Time (ms) since creation: 37; Size of bundle payload (bytes):312
2022-12-08 20:24:28.771 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:126279354::seqNum:0; Time (ms) since creation: 41; Size of bundle payload (bytes):312
2022-12-08 20:24:28.812 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670531068812
2022-12-08 20:24:28.813 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.813 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 126279437
2022-12-08 20:24:28.813 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 126279437
2022-12-08 20:24:28.814 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.20695656883522684
2022-12-08 20:24:28.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.816 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.816 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.816 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.816 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.816 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.816 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.816 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.817 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.817 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.817 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.817 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.817 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.817 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.818 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.818 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.818 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.818 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.818 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.818 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.819 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.819 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.819 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.819 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.825 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.825 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.825 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.825 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.825 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.826 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.826 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.826 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.826 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.826 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.826 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.826 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.827 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.827 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.827 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.827 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.827 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.827 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.827 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.828 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.828 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.828 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.828 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.828 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.828 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.829 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.829 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.829 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.829 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.835 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.835 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.836 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.836 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.847 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.847 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.847 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.847 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.848 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.848 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.851 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.851 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.853 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.854 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.854 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.854 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.854 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.854 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.854 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.855 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.855 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.855 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.855 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.855 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.855 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.855 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.855 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.856 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.856 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.856 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.856 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.856 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.856 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.856 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.856 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.857 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.857 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.857 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.857 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.857 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.859 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.859 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.859 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.864 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.864 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.864 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.874 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.874 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.876 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.876 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.876 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.876 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.878 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.878 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.878 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.878 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.881 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.882 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.882 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.882 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.882 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.883 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.883 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.883 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.883 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.883 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.883 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.883 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.884 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.884 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.884 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.884 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.885 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.885 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.885 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.886 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.886 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.886 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.886 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.886 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.886 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.887 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.887 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.888 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.890 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.890 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.894 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:a::to:b::creationTime:126279437::seqNum:0
2022-12-08 20:24:28.902 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.5906013086225171
2022-12-08 20:24:28.902 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 20:24:28.906 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" : 126279437
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,