-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger_b.log.1011
More file actions
4491 lines (4491 loc) · 517 KB
/
logger_b.log.1011
File metadata and controls
4491 lines (4491 loc) · 517 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2022-12-08 21:14:27.228 INFO SendStrings.App main Starting main app
2022-12-08 21:14:27.589 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 21:14:27.590 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 21:14:27.602 INFO Configs.ConvergenceLayerParams readConvergenceLayerConfigFile Parsed config file info
2022-12-08 21:14:27.602 INFO Configs.ConvergenceLayerParams getInstance Created ConvergenceLayerParams singleton
2022-12-08 21:14:27.602 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 21:14:27.603 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 21:14:27.605 INFO BPv7.AdminElementStatusReportBuilder getInstance Created AdminElementStatusReportBuilder singleton
2022-12-08 21:14:27.606 INFO BPv7.AdminElementStatusReportRcode getInstance Created AdminElementStatusReportRcode singleton
2022-12-08 21:14:27.609 INFO BPv7.AdminElement getInstance Created AdminElement singleton
2022-12-08 21:14:27.612 INFO DTCP.DTCP getInstance Created DTCP singleton
2022-12-08 21:14:27.613 INFO BPv7.BPAUtils getInstance Created BPA singleton
2022-12-08 21:14:27.613 INFO BPv7.ApplicationAgent getInstance Created ApplicationAgent singleton
2022-12-08 21:14:27.614 INFO SendStrings.App receiveSync Starting AA and subclass threads
2022-12-08 21:14:27.615 INFO SendStrings.App receiveSync Receiving SYNC message on host b
2022-12-08 21:14:27.621 INFO BPv7.BPA <init> Started BPA sending and receiving threads
2022-12-08 21:14:27.622 INFO BPv7.BPA getInstance Created BPA singleton
2022-12-08 21:14:27.627 INFO DTCP.DTCPServer run DTCP Server Started
2022-12-08 21:14:31.456 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:36502
2022-12-08 21:14:31.626 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:129281808::seqNum:0"
2022-12-08 21:14:31.670 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.9805308336404833
2022-12-08 21:14:31.678 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:129281808::seqNum:0; Time (ms) since creation: 491
2022-12-08 21:14:31.678 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 129281808
2022-12-08 21:14:31.679 INFO SendStrings.App receiveSync Verified SYNC from a, replying in kind
2022-12-08 21:14:31.679 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:129282303::seqNum:0
2022-12-08 21:14:31.680 INFO BPv7.BPA send saving the bundle, timestamp: 129282303
2022-12-08 21:14:31.680 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.40559595050478214
2022-12-08 21:14:31.681 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:14:31.686 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 129281808
2022-12-08 21:14:31.690 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:129281808::seqNum:0; Time (ms) since creation: 502; Size of bundle payload (bytes):89
2022-12-08 21:14:31.692 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:129281808::seqNum:0; Time (ms) since creation: 508; Size of bundle payload (bytes):89
2022-12-08 21:14:31.733 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 129282303
2022-12-08 21:14:31.739 WARNING SendStrings.App receiveSync Host b finished with SYNC receive
2022-12-08 21:14:31.745 WARNING SendStrings.App main Host b:: Starting scenario #1011:: "Low density of packets, large packets, high density of expected downs"
2022-12-08 21:14:31.773 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 0,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 129282303
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "U2NlbmFyaW8gPSAxMDExOjogIkxvdyBkZW5zaXR5IG9mIHBhY2tldHMsIGxhcmdlIHBhY2tldHMsIGhpZ2ggZGVuc2l0eSBvZiBleHBlY3RlZCBkb3ducyI=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:14:31.783 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:129282303::seqNum:0; Time (ms) since creation: 103; Size of bundle payload (bytes):89
2022-12-08 21:14:31.790 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:129282303::seqNum:0; Time (ms) since creation: 111
2022-12-08 21:14:31.790 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 129282303
2022-12-08 21:14:32.125 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:36518
2022-12-08 21:14:32.191 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:36526
2022-12-08 21:14:32.206 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:129282450::seqNum:0"
2022-12-08 21:14:32.218 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.3865859602043211
2022-12-08 21:14:32.224 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:129282450::seqNum:0; Time (ms) since creation: 398; Size of bundle payload (bytes):10971
2022-12-08 21:14:32.224 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:129282450::seqNum:0; Time (ms) since creation: 398
2022-12-08 21:14:32.226 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 129282450
2022-12-08 21:14:32.226 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 129282450
2022-12-08 21:14:32.226 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:129282450::seqNum:0; Time (ms) since creation: 400; Size of bundle payload (bytes):10971
2022-12-08 21:14:32.228 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 129282450
2022-12-08 21:14:32.228 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:14:32.231 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:129282855::seqNum:0
2022-12-08 21:14:32.231 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 129282855
2022-12-08 21:14:32.232 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.8080795345497401
2022-12-08 21:14:32.232 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:14:32.236 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 129282855
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTI5MjgyNDUwCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:14:32.238 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 129282855
2022-12-08 21:14:32.239 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:129282855::seqNum:0; Time (ms) since creation: 8; Size of bundle payload (bytes):312
2022-12-08 21:14:32.242 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:129282855::seqNum:0; Time (ms) since creation: 11
2022-12-08 21:14:32.242 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 129282855
2022-12-08 21:14:32.294 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:129282691::seqNum:0"
2022-12-08 21:14:32.304 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.918294497284535
2022-12-08 21:14:32.304 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:129282691::seqNum:0; Time (ms) since creation: 237
2022-12-08 21:14:32.304 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 129282691
2022-12-08 21:14:32.304 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 129282691
2022-12-08 21:14:32.305 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:129282691::seqNum:0; Time (ms) since creation: 238; Size of bundle payload (bytes):10245
2022-12-08 21:14:32.305 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 129282691
2022-12-08 21:14:32.305 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:14:32.308 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.308 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 129282932
2022-12-08 21:14:32.308 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.11862596661802338
2022-12-08 21:14:32.309 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.309 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.310 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.310 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.310 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.310 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.311 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.311 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.311 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.311 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.312 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.312 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.312 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.312 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.313 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.313 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.313 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.314 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.314 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.314 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.312 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 129282932
2022-12-08 21:14:32.320 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.315 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:129282691::seqNum:0; Time (ms) since creation: 248; Size of bundle payload (bytes):10245
2022-12-08 21:14:32.321 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.321 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.321 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.323 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.323 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.324 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.324 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.328 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.328 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.328 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.328 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.331 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.331 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.332 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.332 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.334 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.335 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.335 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.335 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.339 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.339 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.339 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.340 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.340 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.341 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.356 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.356 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.356 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.359 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.359 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.359 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.360 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.362 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.362 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.363 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.363 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.363 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.366 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.366 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.367 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.367 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.367 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.367 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.368 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.370 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.372 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.372 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.374 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.375 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.375 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.375 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.375 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.378 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.378 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.378 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.379 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.383 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.384 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.384 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.384 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.388 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.388 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.388 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.389 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.389 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.392 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.392 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.392 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.396 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.396 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.396 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.396 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.397 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129282932::seqNum:0
2022-12-08 21:14:32.402 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.9526613675858209
2022-12-08 21:14:32.402 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:14:32.416 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 129282932
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTI5MjgyNjkxCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:14:32.421 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:129282932::seqNum:0; Time (ms) since creation: 113; Size of bundle payload (bytes):312
2022-12-08 21:14:32.422 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:129282932::seqNum:0; Time (ms) since creation: 114
2022-12-08 21:14:32.422 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 129282932
2022-12-08 21:14:32.597 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:36536
2022-12-08 21:14:32.677 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:36552
2022-12-08 21:14:32.694 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:129283103::seqNum:0"
2022-12-08 21:14:32.697 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.1957147318888891
2022-12-08 21:14:32.698 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:129283103::seqNum:0; Time (ms) since creation: 219
2022-12-08 21:14:32.698 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 129283103
2022-12-08 21:14:32.698 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 129283103
2022-12-08 21:14:32.698 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:129283103::seqNum:0; Time (ms) since creation: 219; Size of bundle payload (bytes):10166
2022-12-08 21:14:32.701 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:129283325::seqNum:0
2022-12-08 21:14:32.702 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 129283325
2022-12-08 21:14:32.702 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.8290904456587206
2022-12-08 21:14:32.702 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:14:32.704 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 129283103
2022-12-08 21:14:32.704 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:14:32.710 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 129283325
2022-12-08 21:14:32.711 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 129283325
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTI5MjgzMTAzCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:14:32.713 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:129283103::seqNum:0; Time (ms) since creation: 234; Size of bundle payload (bytes):10166
2022-12-08 21:14:32.716 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:129282890::seqNum:0"
2022-12-08 21:14:32.730 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:129283325::seqNum:0; Time (ms) since creation: 29; Size of bundle payload (bytes):312
2022-12-08 21:14:32.741 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.3841006101754286
2022-12-08 21:14:32.741 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:129283325::seqNum:0; Time (ms) since creation: 40
2022-12-08 21:14:32.745 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:129282890::seqNum:0; Time (ms) since creation: 479
2022-12-08 21:14:32.746 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 129282890
2022-12-08 21:14:32.746 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 129282890
2022-12-08 21:14:32.746 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:129282890::seqNum:0; Time (ms) since creation: 480; Size of bundle payload (bytes):10270
2022-12-08 21:14:32.748 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 129282890
2022-12-08 21:14:32.748 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:14:32.743 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:129282890::seqNum:0; Time (ms) since creation: 477; Size of bundle payload (bytes):10270
2022-12-08 21:14:32.745 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 129283325
2022-12-08 21:14:32.750 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:129283374::seqNum:0
2022-12-08 21:14:32.750 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 129283374
2022-12-08 21:14:32.751 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:14:32.755 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 129283374
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTI5MjgyODkwCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:14:32.757 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 129283374
2022-12-08 21:14:32.759 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:129283374::seqNum:0; Time (ms) since creation: 9; Size of bundle payload (bytes):312
2022-12-08 21:14:32.764 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:129283374::seqNum:0; Time (ms) since creation: 14
2022-12-08 21:14:32.764 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 129283374
2022-12-08 21:14:32.910 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:36568
2022-12-08 21:14:32.978 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:129283251::seqNum:0"
2022-12-08 21:14:32.978 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.5938083675931639
2022-12-08 21:14:32.979 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:129283251::seqNum:0; Time (ms) since creation: 351; Size of bundle payload (bytes):9783
2022-12-08 21:14:32.979 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:129283251::seqNum:0; Time (ms) since creation: 352
2022-12-08 21:14:32.979 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 129283251
2022-12-08 21:14:32.979 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 129283251
2022-12-08 21:14:32.979 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:129283251::seqNum:0; Time (ms) since creation: 352; Size of bundle payload (bytes):9783
2022-12-08 21:14:32.982 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:129283606::seqNum:0
2022-12-08 21:14:32.982 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 129283606
2022-12-08 21:14:32.982 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 129283606
2022-12-08 21:14:32.983 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.6764108472540463
2022-12-08 21:14:32.983 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:14:32.983 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 129283251
2022-12-08 21:14:32.984 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:14:32.987 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 129283606
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTI5MjgzMjUxCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:14:32.990 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:129283606::seqNum:0; Time (ms) since creation: 8; Size of bundle payload (bytes):312
2022-12-08 21:14:32.991 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:129283606::seqNum:0; Time (ms) since creation: 9
2022-12-08 21:14:32.991 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 129283606
2022-12-08 21:14:33.187 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:36570
2022-12-08 21:14:33.237 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:129283695::seqNum:0"
2022-12-08 21:14:33.238 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.6212447247108968
2022-12-08 21:14:33.238 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:129283695::seqNum:0; Time (ms) since creation: 167
2022-12-08 21:14:33.238 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 129283695
2022-12-08 21:14:33.238 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 129283695
2022-12-08 21:14:33.238 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:129283695::seqNum:0; Time (ms) since creation: 167; Size of bundle payload (bytes):10542
2022-12-08 21:14:33.241 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.241 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 129283865
2022-12-08 21:14:33.242 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 129283865
2022-12-08 21:14:33.242 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.046309841575195576
2022-12-08 21:14:33.242 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.242 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.243 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.243 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.243 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.243 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.244 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.244 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.244 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.244 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.244 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.245 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.245 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.245 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.245 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.246 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.246 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.246 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.246 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.242 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:129283695::seqNum:0; Time (ms) since creation: 171; Size of bundle payload (bytes):10542
2022-12-08 21:14:33.242 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 129283695
2022-12-08 21:14:33.247 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:14:33.246 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.248 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.248 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.248 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.248 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.248 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.249 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.249 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.249 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.249 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.249 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.250 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.250 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.250 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.250 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.250 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.251 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.251 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.251 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.251 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.251 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.252 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.252 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.252 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.260 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.261 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.261 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.261 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.261 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.262 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.262 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.262 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.262 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.262 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.263 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.263 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.263 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.268 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.268 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.269 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.269 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.269 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.269 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.269 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.270 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.284 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.285 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.285 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.285 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.285 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.285 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.286 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.286 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.286 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.286 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.286 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.287 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.287 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.287 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.287 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.287 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.288 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.288 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.288 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.288 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.288 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.288 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.289 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.289 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.289 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.289 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.289 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.290 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129283865::seqNum:0
2022-12-08 21:14:33.343 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.682597830657675
2022-12-08 21:14:33.344 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:14:33.381 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 129283865
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTI5MjgzNjk1CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:14:33.384 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:36584
2022-12-08 21:14:33.392 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:129283865::seqNum:0; Time (ms) since creation: 151; Size of bundle payload (bytes):312
2022-12-08 21:14:33.392 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:129283865::seqNum:0; Time (ms) since creation: 151
2022-12-08 21:14:33.392 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 129283865
2022-12-08 21:14:33.476 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:129283914::seqNum:0"
2022-12-08 21:14:33.476 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.005572825668812009
2022-12-08 21:14:33.478 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:129283914::seqNum:0; Time (ms) since creation: 188
2022-12-08 21:14:33.478 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 129283914
2022-12-08 21:14:33.478 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 129283914
2022-12-08 21:14:33.478 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:129283914::seqNum:0; Time (ms) since creation: 188; Size of bundle payload (bytes):10766
2022-12-08 21:14:33.480 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 129283914
2022-12-08 21:14:33.480 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:14:33.482 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:129284106::seqNum:0
2022-12-08 21:14:33.482 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 129284106
2022-12-08 21:14:33.482 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.9438729830012127
2022-12-08 21:14:33.482 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:14:33.484 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:36600
2022-12-08 21:14:33.486 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 129284106
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTI5MjgzOTE0CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:14:33.486 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 129284106
2022-12-08 21:14:33.488 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:129283914::seqNum:0; Time (ms) since creation: 198; Size of bundle payload (bytes):10766
2022-12-08 21:14:33.504 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:129284106::seqNum:0; Time (ms) since creation: 22; Size of bundle payload (bytes):312
2022-12-08 21:14:33.504 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:129284106::seqNum:0; Time (ms) since creation: 22
2022-12-08 21:14:33.504 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 129284106
2022-12-08 21:14:33.589 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:36602
2022-12-08 21:14:33.790 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:129283480::seqNum:0"
2022-12-08 21:14:33.793 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.32499462343257757
2022-12-08 21:14:33.795 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:129283480::seqNum:0; Time (ms) since creation: 939
2022-12-08 21:14:33.795 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 129283480
2022-12-08 21:14:33.796 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 129283480
2022-12-08 21:14:33.796 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:129283480::seqNum:0; Time (ms) since creation: 940; Size of bundle payload (bytes):9557
2022-12-08 21:14:33.796 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 129283480
2022-12-08 21:14:33.796 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:14:33.804 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:129283480::seqNum:0; Time (ms) since creation: 948; Size of bundle payload (bytes):9557
2022-12-08 21:14:33.808 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.808 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 129284432
2022-12-08 21:14:33.808 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.18235576883186289
2022-12-08 21:14:33.809 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.809 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.809 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.809 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.809 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.810 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.810 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.810 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.810 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.810 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.810 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.811 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.811 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.811 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.811 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.811 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.811 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.812 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.812 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.812 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.812 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.812 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.812 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.813 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.813 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.813 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.813 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.813 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.813 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.814 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.815 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.816 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.816 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.816 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.816 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 129284432
2022-12-08 21:14:33.829 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.829 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.829 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.829 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.830 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.830 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.830 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.830 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.830 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.830 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.830 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.831 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.831 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.831 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.831 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.831 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.831 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.832 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.832 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.832 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.832 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.832 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.832 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.833 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.833 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.833 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.833 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.833 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.833 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.834 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.834 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.834 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.834 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.834 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.834 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.834 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.835 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.835 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.835 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.835 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.835 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.835 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.836 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.836 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.836 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.836 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.836 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.836 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.837 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.837 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.837 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.837 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.837 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.837 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.838 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.838 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.838 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.838 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.838 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.838 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.839 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.839 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.839 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.839 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.839 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.839 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.839 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.840 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.840 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.840 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.840 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.841 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.841 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.846 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.850 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.850 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.850 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.851 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.851 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.851 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.851 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.851 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.852 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.852 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.852 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.854 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.850 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:129284132::seqNum:0"
2022-12-08 21:14:33.855 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.7608621795852827
2022-12-08 21:14:33.855 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:129284132::seqNum:0; Time (ms) since creation: 347
2022-12-08 21:14:33.855 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 129284132
2022-12-08 21:14:33.855 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 129284132
2022-12-08 21:14:33.856 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:129284132::seqNum:0; Time (ms) since creation: 348; Size of bundle payload (bytes):9530
2022-12-08 21:14:33.856 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 129284132
2022-12-08 21:14:33.856 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:14:33.857 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:129284132::seqNum:0; Time (ms) since creation: 349; Size of bundle payload (bytes):9530
2022-12-08 21:14:33.857 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.857 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.857 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.858 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.858 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.858 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.858 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 129284482
2022-12-08 21:14:33.858 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 129284482
2022-12-08 21:14:33.858 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.859 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.859 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.859 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.859 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.859 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.859 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.859 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.860 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.861 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.862 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.863 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.864 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.864 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.864 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.864 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.864 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.864 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.865 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.865 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.865 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.865 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.865 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.865 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.865 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.866 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.866 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.866 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.866 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.866 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.866 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.867 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.867 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.867 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.867 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.867 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.867 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.867 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.868 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.868 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.868 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.868 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.868 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.868 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.869 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.869 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.869 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.869 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.869 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.869 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.870 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.870 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.870 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.870 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.870 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.870 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.870 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.871 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.871 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.871 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.871 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.871 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.871 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.872 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.872 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.872 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.872 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.872 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.872 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.872 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.873 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.873 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.873 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.873 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.873 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.873 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.874 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.874 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.874 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.874 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.874 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.874 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.875 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.876 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.876 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.876 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.876 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.876 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.876 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.877 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.887 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.888 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.889 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.890 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.890 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.891 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.891 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.891 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.891 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.891 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.892 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.892 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.892 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.892 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.892 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.892 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.892 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.893 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.893 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.893 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.893 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.893 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.893 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.893 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.893 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.894 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.894 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.894 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.894 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.894 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.894 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.894 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.894 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.895 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.896 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.896 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.896 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284432::seqNum:0
2022-12-08 21:14:33.896 INFO BPv7.BPADispatcher run Expected down, readding to the buffer: from:b::to:a::creationTime:129284482::seqNum:0
2022-12-08 21:14:33.900 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.6680678109816874
2022-12-08 21:14:33.900 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:14:33.908 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 129284432
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTI5MjgzNDgwCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:14:33.910 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:129284432::seqNum:0; Time (ms) since creation: 102; Size of bundle payload (bytes):312
2022-12-08 21:14:33.911 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:129284432::seqNum:0; Time (ms) since creation: 103
2022-12-08 21:14:33.911 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 129284432
2022-12-08 21:14:33.911 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:14:33.921 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 129284482
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTI5Mjg0MTMyCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,