-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger_b.log.1100
More file actions
4992 lines (4992 loc) · 331 KB
/
logger_b.log.1100
File metadata and controls
4992 lines (4992 loc) · 331 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2022-12-08 21:29:40.226 INFO SendStrings.App main Starting main app
2022-12-08 21:29:40.715 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 21:29:40.716 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 21:29:40.746 INFO Configs.ConvergenceLayerParams readConvergenceLayerConfigFile Parsed config file info
2022-12-08 21:29:40.752 INFO Configs.ConvergenceLayerParams getInstance Created ConvergenceLayerParams singleton
2022-12-08 21:29:40.753 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 21:29:40.754 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 21:29:40.764 INFO BPv7.AdminElementStatusReportBuilder getInstance Created AdminElementStatusReportBuilder singleton
2022-12-08 21:29:40.768 INFO BPv7.AdminElementStatusReportRcode getInstance Created AdminElementStatusReportRcode singleton
2022-12-08 21:29:40.773 INFO BPv7.AdminElement getInstance Created AdminElement singleton
2022-12-08 21:29:40.782 INFO DTCP.DTCP getInstance Created DTCP singleton
2022-12-08 21:29:40.782 INFO BPv7.BPAUtils getInstance Created BPA singleton
2022-12-08 21:29:40.786 INFO BPv7.ApplicationAgent getInstance Created ApplicationAgent singleton
2022-12-08 21:29:40.786 INFO SendStrings.App receiveSync Starting AA and subclass threads
2022-12-08 21:29:40.787 INFO SendStrings.App receiveSync Receiving SYNC message on host b
2022-12-08 21:29:40.804 INFO DTCP.DTCPServer run DTCP Server Started
2022-12-08 21:29:40.805 INFO BPv7.BPA <init> Started BPA sending and receiving threads
2022-12-08 21:29:40.805 INFO BPv7.BPA getInstance Created BPA singleton
2022-12-08 21:29:42.235 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54652
2022-12-08 21:29:42.336 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130192568::seqNum:0"
2022-12-08 21:29:42.344 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.27857277499639344
2022-12-08 21:29:42.348 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130192568::seqNum:0; Time (ms) since creation: 401
2022-12-08 21:29:42.349 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130192568
2022-12-08 21:29:42.350 INFO SendStrings.App receiveSync Verified SYNC from a, replying in kind
2022-12-08 21:29:42.350 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130192974::seqNum:0
2022-12-08 21:29:42.351 INFO BPv7.BPA send saving the bundle, timestamp: 130192974
2022-12-08 21:29:42.351 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.5809204054743914
2022-12-08 21:29:42.351 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.358 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130192568
2022-12-08 21:29:42.374 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130192568::seqNum:0; Time (ms) since creation: 405; Size of bundle payload (bytes):89
2022-12-08 21:29:42.377 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130192568::seqNum:0; Time (ms) since creation: 416; Size of bundle payload (bytes):89
2022-12-08 21:29:42.384 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130192974
2022-12-08 21:29:42.385 WARNING SendStrings.App receiveSync Host b finished with SYNC receive
2022-12-08 21:29:42.389 WARNING SendStrings.App main Host b:: Starting scenario #1100:: "High density of packets, small packets, low density of expected downs"
2022-12-08 21:29:42.407 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 0,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130192974
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "U2NlbmFyaW8gPSAxMTAwOjogIkhpZ2ggZGVuc2l0eSBvZiBwYWNrZXRzLCBzbWFsbCBwYWNrZXRzLCBsb3cgZGVuc2l0eSBvZiBleHBlY3RlZCBkb3ducyI=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.415 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130192974::seqNum:0; Time (ms) since creation: 64; Size of bundle payload (bytes):89
2022-12-08 21:29:42.417 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130192974::seqNum:0; Time (ms) since creation: 67
2022-12-08 21:29:42.422 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130192974
2022-12-08 21:29:42.516 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54660
2022-12-08 21:29:42.605 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54664
2022-12-08 21:29:42.609 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193087::seqNum:0"
2022-12-08 21:29:42.618 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.6817301183706694
2022-12-08 21:29:42.618 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193087::seqNum:0; Time (ms) since creation: 155
2022-12-08 21:29:42.619 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193087
2022-12-08 21:29:42.619 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193087
2022-12-08 21:29:42.620 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193087::seqNum:0; Time (ms) since creation: 157; Size of bundle payload (bytes):642
2022-12-08 21:29:42.620 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193087
2022-12-08 21:29:42.620 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:42.624 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130193248::seqNum:0
2022-12-08 21:29:42.624 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193248
2022-12-08 21:29:42.624 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193087::seqNum:0; Time (ms) since creation: 161; Size of bundle payload (bytes):642
2022-12-08 21:29:42.625 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193248
2022-12-08 21:29:42.624 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.10322369271608844
2022-12-08 21:29:42.625 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.630 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193248
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMDg3CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.633 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130193248::seqNum:0; Time (ms) since creation: 9; Size of bundle payload (bytes):312
2022-12-08 21:29:42.633 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130193248::seqNum:0; Time (ms) since creation: 9
2022-12-08 21:29:42.633 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193248
2022-12-08 21:29:42.669 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193144::seqNum:0"
2022-12-08 21:29:42.670 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193144::seqNum:0; Time (ms) since creation: 150; Size of bundle payload (bytes):998
2022-12-08 21:29:42.670 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193144::seqNum:0; Time (ms) since creation: 150
2022-12-08 21:29:42.692 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193144
2022-12-08 21:29:42.693 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193144
2022-12-08 21:29:42.693 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193144::seqNum:0; Time (ms) since creation: 173; Size of bundle payload (bytes):998
2022-12-08 21:29:42.696 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193144
2022-12-08 21:29:42.696 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:42.697 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130193321::seqNum:0
2022-12-08 21:29:42.697 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193321
2022-12-08 21:29:42.697 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.707 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193321
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMTQ0CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.712 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193321
2022-12-08 21:29:42.720 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130193321::seqNum:0; Time (ms) since creation: 23; Size of bundle payload (bytes):312
2022-12-08 21:29:42.721 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130193321::seqNum:0; Time (ms) since creation: 24
2022-12-08 21:29:42.721 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193321
2022-12-08 21:29:42.723 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54666
2022-12-08 21:29:42.762 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193186::seqNum:0"
2022-12-08 21:29:42.762 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.8733785185831716
2022-12-08 21:29:42.763 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193186::seqNum:0; Time (ms) since creation: 201
2022-12-08 21:29:42.763 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193186
2022-12-08 21:29:42.763 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193186
2022-12-08 21:29:42.763 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193186::seqNum:0; Time (ms) since creation: 201; Size of bundle payload (bytes):655
2022-12-08 21:29:42.766 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130193390::seqNum:0
2022-12-08 21:29:42.766 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193390
2022-12-08 21:29:42.767 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193390
2022-12-08 21:29:42.767 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193186
2022-12-08 21:29:42.767 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:42.768 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.07370997301549886
2022-12-08 21:29:42.768 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.773 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 2,
"destNode" : {
"id" : "a"
},
"srcNode" : {
"id" : "b"
},
"reportToNode" : {
"id" : "b"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 130193390
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMTg2CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.786 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193186::seqNum:0; Time (ms) since creation: 224; Size of bundle payload (bytes):655
2022-12-08 21:29:42.813 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130193390::seqNum:0; Time (ms) since creation: 47; Size of bundle payload (bytes):312
2022-12-08 21:29:42.813 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130193390::seqNum:0; Time (ms) since creation: 47
2022-12-08 21:29:42.813 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193390
2022-12-08 21:29:42.852 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54680
2022-12-08 21:29:42.927 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54682
2022-12-08 21:29:42.965 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193261::seqNum:0"
2022-12-08 21:29:42.966 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.13079389131248564
2022-12-08 21:29:42.966 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193261::seqNum:0; Time (ms) since creation: 329; Size of bundle payload (bytes):338
2022-12-08 21:29:42.966 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193261::seqNum:0; Time (ms) since creation: 329
2022-12-08 21:29:42.967 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193261
2022-12-08 21:29:42.967 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193261
2022-12-08 21:29:42.967 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193261::seqNum:0; Time (ms) since creation: 330; Size of bundle payload (bytes):338
2022-12-08 21:29:42.970 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130193594::seqNum:0
2022-12-08 21:29:42.970 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193594
2022-12-08 21:29:42.970 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.47019665965941526
2022-12-08 21:29:42.971 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:42.975 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" : 130193594
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMjYxCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:42.976 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193261
2022-12-08 21:29:42.976 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:42.984 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193594
2022-12-08 21:29:43.000 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130193594::seqNum:0; Time (ms) since creation: 30; Size of bundle payload (bytes):312
2022-12-08 21:29:43.001 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130193594::seqNum:0; Time (ms) since creation: 31
2022-12-08 21:29:43.001 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193594
2022-12-08 21:29:43.005 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193344::seqNum:0"
2022-12-08 21:29:43.012 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.014461946683216764
2022-12-08 21:29:43.012 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193344::seqNum:0; Time (ms) since creation: 292; Size of bundle payload (bytes):758
2022-12-08 21:29:43.012 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193344::seqNum:0; Time (ms) since creation: 292
2022-12-08 21:29:43.012 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193344
2022-12-08 21:29:43.013 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193344
2022-12-08 21:29:43.013 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193344::seqNum:0; Time (ms) since creation: 293; Size of bundle payload (bytes):758
2022-12-08 21:29:43.016 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130193639::seqNum:0
2022-12-08 21:29:43.016 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193639
2022-12-08 21:29:43.016 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193344
2022-12-08 21:29:43.020 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:43.021 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.08335033241908463
2022-12-08 21:29:43.021 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.027 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" : 130193639
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMzQ0CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.028 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193639
2022-12-08 21:29:43.044 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54690
2022-12-08 21:29:43.067 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130193639::seqNum:0; Time (ms) since creation: 52; Size of bundle payload (bytes):312
2022-12-08 21:29:43.068 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130193639::seqNum:0; Time (ms) since creation: 53
2022-12-08 21:29:43.068 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193639
2022-12-08 21:29:43.143 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193295::seqNum:0"
2022-12-08 21:29:43.146 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.19044305332581335
2022-12-08 21:29:43.146 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193295::seqNum:0; Time (ms) since creation: 475; Size of bundle payload (bytes):154
2022-12-08 21:29:43.146 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193295::seqNum:0; Time (ms) since creation: 475
2022-12-08 21:29:43.149 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193295
2022-12-08 21:29:43.149 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193295
2022-12-08 21:29:43.150 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193295::seqNum:0; Time (ms) since creation: 479; Size of bundle payload (bytes):154
2022-12-08 21:29:43.152 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193295
2022-12-08 21:29:43.152 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:43.154 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130193777::seqNum:0
2022-12-08 21:29:43.154 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193777
2022-12-08 21:29:43.154 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.6354328888091053
2022-12-08 21:29:43.154 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.158 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" : 130193777
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMjk1CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.158 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193777
2022-12-08 21:29:43.189 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130193777::seqNum:0; Time (ms) since creation: 35; Size of bundle payload (bytes):312
2022-12-08 21:29:43.189 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130193777::seqNum:0; Time (ms) since creation: 36
2022-12-08 21:29:43.189 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193777
2022-12-08 21:29:43.250 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54698
2022-12-08 21:29:43.295 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193399::seqNum:0"
2022-12-08 21:29:43.296 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.988747844089833
2022-12-08 21:29:43.306 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193399::seqNum:0; Time (ms) since creation: 531
2022-12-08 21:29:43.307 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193399
2022-12-08 21:29:43.307 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193399
2022-12-08 21:29:43.307 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193399::seqNum:0; Time (ms) since creation: 532; Size of bundle payload (bytes):646
2022-12-08 21:29:43.310 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130193934::seqNum:0
2022-12-08 21:29:43.310 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130193934
2022-12-08 21:29:43.310 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.6077807575180042
2022-12-08 21:29:43.311 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.312 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193399
2022-12-08 21:29:43.312 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:43.315 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" : 130193934
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzMzk5CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.316 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130193934
2022-12-08 21:29:43.317 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193399::seqNum:0; Time (ms) since creation: 542; Size of bundle payload (bytes):646
2022-12-08 21:29:43.368 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54708
2022-12-08 21:29:43.372 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130193934::seqNum:0; Time (ms) since creation: 62; Size of bundle payload (bytes):312
2022-12-08 21:29:43.372 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130193934::seqNum:0; Time (ms) since creation: 62
2022-12-08 21:29:43.373 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130193934
2022-12-08 21:29:43.390 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193451::seqNum:0"
2022-12-08 21:29:43.390 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.5251782778571218
2022-12-08 21:29:43.390 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193451::seqNum:0; Time (ms) since creation: 563
2022-12-08 21:29:43.391 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193451
2022-12-08 21:29:43.391 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193451
2022-12-08 21:29:43.391 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193451
2022-12-08 21:29:43.391 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:43.391 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193451::seqNum:0; Time (ms) since creation: 564; Size of bundle payload (bytes):936
2022-12-08 21:29:43.394 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130194018::seqNum:0
2022-12-08 21:29:43.394 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130194018
2022-12-08 21:29:43.394 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.398 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" : 130194018
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzNDUxCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.398 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130194018
2022-12-08 21:29:43.449 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193451::seqNum:0; Time (ms) since creation: 622; Size of bundle payload (bytes):936
2022-12-08 21:29:43.471 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130194018::seqNum:0; Time (ms) since creation: 77; Size of bundle payload (bytes):312
2022-12-08 21:29:43.472 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130194018::seqNum:0; Time (ms) since creation: 78
2022-12-08 21:29:43.472 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130194018
2022-12-08 21:29:43.511 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54710
2022-12-08 21:29:43.594 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193504::seqNum:0"
2022-12-08 21:29:43.595 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.30951369250612637
2022-12-08 21:29:43.595 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193504::seqNum:0; Time (ms) since creation: 715
2022-12-08 21:29:43.595 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193504
2022-12-08 21:29:43.596 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193504
2022-12-08 21:29:43.596 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193504::seqNum:0; Time (ms) since creation: 716; Size of bundle payload (bytes):460
2022-12-08 21:29:43.598 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130194222::seqNum:0
2022-12-08 21:29:43.598 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130194222
2022-12-08 21:29:43.599 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.37366315529837535
2022-12-08 21:29:43.599 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.601 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193504
2022-12-08 21:29:43.601 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:43.604 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" : 130194222
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzNTA0CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.604 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130194222
2022-12-08 21:29:43.610 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54716
2022-12-08 21:29:43.616 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193553::seqNum:0"
2022-12-08 21:29:43.616 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.5449483152236487
2022-12-08 21:29:43.617 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193553::seqNum:0; Time (ms) since creation: 688
2022-12-08 21:29:43.617 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193553
2022-12-08 21:29:43.617 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193553
2022-12-08 21:29:43.618 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193553::seqNum:0; Time (ms) since creation: 688; Size of bundle payload (bytes):442
2022-12-08 21:29:43.616 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193504::seqNum:0; Time (ms) since creation: 736; Size of bundle payload (bytes):460
2022-12-08 21:29:43.617 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193553
2022-12-08 21:29:43.618 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:43.620 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130194244::seqNum:0
2022-12-08 21:29:43.620 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130194244
2022-12-08 21:29:43.620 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130194244
2022-12-08 21:29:43.621 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193553::seqNum:0; Time (ms) since creation: 692; Size of bundle payload (bytes):442
2022-12-08 21:29:43.633 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130194222::seqNum:0; Time (ms) since creation: 35; Size of bundle payload (bytes):312
2022-12-08 21:29:43.634 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130194222::seqNum:0; Time (ms) since creation: 36
2022-12-08 21:29:43.634 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130194222
2022-12-08 21:29:43.634 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.9700134320879475
2022-12-08 21:29:43.634 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.638 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" : 130194244
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzNTUzCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.686 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130194244::seqNum:0; Time (ms) since creation: 65; Size of bundle payload (bytes):312
2022-12-08 21:29:43.686 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130194244::seqNum:0; Time (ms) since creation: 66
2022-12-08 21:29:43.686 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130194244
2022-12-08 21:29:43.751 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54720
2022-12-08 21:29:43.764 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193602::seqNum:0"
2022-12-08 21:29:43.765 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.138533350377946
2022-12-08 21:29:43.765 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193602::seqNum:0; Time (ms) since creation: 787
2022-12-08 21:29:43.765 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193602
2022-12-08 21:29:43.766 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193602
2022-12-08 21:29:43.766 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193602::seqNum:0; Time (ms) since creation: 788; Size of bundle payload (bytes):566
2022-12-08 21:29:43.766 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193602
2022-12-08 21:29:43.766 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:43.768 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130194392::seqNum:0
2022-12-08 21:29:43.768 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130194392
2022-12-08 21:29:43.769 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.9507295017907038
2022-12-08 21:29:43.769 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.768 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193602::seqNum:0; Time (ms) since creation: 790; Size of bundle payload (bytes):566
2022-12-08 21:29:43.772 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130194392
2022-12-08 21:29:43.773 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" : 130194392
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzNjAyCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.810 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130194392::seqNum:0; Time (ms) since creation: 42; Size of bundle payload (bytes):312
2022-12-08 21:29:43.828 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130194392::seqNum:0; Time (ms) since creation: 60
2022-12-08 21:29:43.829 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130194392
2022-12-08 21:29:43.857 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54732
2022-12-08 21:29:43.902 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193649::seqNum:0"
2022-12-08 21:29:43.903 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.9689261235406319
2022-12-08 21:29:43.903 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193649::seqNum:0; Time (ms) since creation: 878; Size of bundle payload (bytes):960
2022-12-08 21:29:43.903 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193649::seqNum:0; Time (ms) since creation: 878
2022-12-08 21:29:43.903 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193649
2022-12-08 21:29:43.904 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193649
2022-12-08 21:29:43.904 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193649::seqNum:0; Time (ms) since creation: 879; Size of bundle payload (bytes):960
2022-12-08 21:29:43.904 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193649
2022-12-08 21:29:43.904 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:43.906 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130194530::seqNum:0
2022-12-08 21:29:43.907 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130194530
2022-12-08 21:29:43.907 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130194530
2022-12-08 21:29:43.908 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.27127375401862985
2022-12-08 21:29:43.908 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.911 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" : 130194530
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzNjQ5CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:43.949 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130194530::seqNum:0; Time (ms) since creation: 43; Size of bundle payload (bytes):312
2022-12-08 21:29:43.949 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130194530::seqNum:0; Time (ms) since creation: 43
2022-12-08 21:29:43.949 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130194530
2022-12-08 21:29:43.971 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54748
2022-12-08 21:29:43.984 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193709::seqNum:0"
2022-12-08 21:29:43.985 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193709::seqNum:0; Time (ms) since creation: 900
2022-12-08 21:29:43.985 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193709
2022-12-08 21:29:43.985 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193709
2022-12-08 21:29:43.985 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193709::seqNum:0; Time (ms) since creation: 900; Size of bundle payload (bytes):559
2022-12-08 21:29:43.986 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193709
2022-12-08 21:29:43.986 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:43.987 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193709::seqNum:0; Time (ms) since creation: 902; Size of bundle payload (bytes):559
2022-12-08 21:29:43.988 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130194612::seqNum:0
2022-12-08 21:29:43.988 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130194612
2022-12-08 21:29:43.988 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:43.991 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130194612
2022-12-08 21:29:43.992 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" : 130194612
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzNzA5CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:44.031 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130194612::seqNum:0; Time (ms) since creation: 43; Size of bundle payload (bytes):312
2022-12-08 21:29:44.031 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130194612::seqNum:0; Time (ms) since creation: 43
2022-12-08 21:29:44.031 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130194612
2022-12-08 21:29:44.068 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54760
2022-12-08 21:29:44.077 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193750::seqNum:0"
2022-12-08 21:29:44.077 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.6298471768690858
2022-12-08 21:29:44.077 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193750::seqNum:0; Time (ms) since creation: 951
2022-12-08 21:29:44.078 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193750
2022-12-08 21:29:44.078 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193750
2022-12-08 21:29:44.078 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193750::seqNum:0; Time (ms) since creation: 952; Size of bundle payload (bytes):567
2022-12-08 21:29:44.078 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193750
2022-12-08 21:29:44.078 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:44.080 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130194704::seqNum:0
2022-12-08 21:29:44.080 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130194704
2022-12-08 21:29:44.081 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.08180640556519159
2022-12-08 21:29:44.081 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:44.081 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193750::seqNum:0; Time (ms) since creation: 955; Size of bundle payload (bytes):567
2022-12-08 21:29:44.111 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130194704
2022-12-08 21:29:44.113 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" : 130194704
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzNzUwCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:44.164 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130194704::seqNum:0; Time (ms) since creation: 84; Size of bundle payload (bytes):312
2022-12-08 21:29:44.165 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130194704::seqNum:0; Time (ms) since creation: 85
2022-12-08 21:29:44.165 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130194704
2022-12-08 21:29:44.208 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54768
2022-12-08 21:29:44.216 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193796::seqNum:0"
2022-12-08 21:29:44.217 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.5569713587088005
2022-12-08 21:29:44.217 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193796::seqNum:0; Time (ms) since creation: 1045
2022-12-08 21:29:44.217 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193796
2022-12-08 21:29:44.218 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193796
2022-12-08 21:29:44.218 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193796::seqNum:0; Time (ms) since creation: 1046; Size of bundle payload (bytes):979
2022-12-08 21:29:44.218 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193796
2022-12-08 21:29:44.220 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130194844::seqNum:0
2022-12-08 21:29:44.224 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130194844
2022-12-08 21:29:44.225 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130194844
2022-12-08 21:29:44.224 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193796::seqNum:0; Time (ms) since creation: 1052; Size of bundle payload (bytes):979
2022-12-08 21:29:44.218 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:44.225 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.9784649479553807
2022-12-08 21:29:44.226 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:44.228 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" : 130194844
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzNzk2CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:44.263 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130194844::seqNum:0; Time (ms) since creation: 43; Size of bundle payload (bytes):312
2022-12-08 21:29:44.263 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130194844::seqNum:0; Time (ms) since creation: 43
2022-12-08 21:29:44.264 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130194844
2022-12-08 21:29:44.306 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54770
2022-12-08 21:29:44.317 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193845::seqNum:0"
2022-12-08 21:29:44.317 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.35689789882822986
2022-12-08 21:29:44.317 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193845::seqNum:0; Time (ms) since creation: 1096
2022-12-08 21:29:44.318 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193845
2022-12-08 21:29:44.318 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193845
2022-12-08 21:29:44.318 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193845::seqNum:0; Time (ms) since creation: 1097; Size of bundle payload (bytes):248
2022-12-08 21:29:44.319 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193845
2022-12-08 21:29:44.319 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:44.321 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130194945::seqNum:0
2022-12-08 21:29:44.322 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130194945
2022-12-08 21:29:44.322 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.5572293681617182
2022-12-08 21:29:44.322 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:44.325 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" : 130194945
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzODQ1CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:44.325 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130194945
2022-12-08 21:29:44.326 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193845::seqNum:0; Time (ms) since creation: 1105; Size of bundle payload (bytes):248
2022-12-08 21:29:44.352 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130194945::seqNum:0; Time (ms) since creation: 31; Size of bundle payload (bytes):312
2022-12-08 21:29:44.352 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130194945::seqNum:0; Time (ms) since creation: 31
2022-12-08 21:29:44.352 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130194945
2022-12-08 21:29:44.442 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54786
2022-12-08 21:29:44.452 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193892::seqNum:0"
2022-12-08 21:29:44.453 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.18963003574761728
2022-12-08 21:29:44.453 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193892::seqNum:0; Time (ms) since creation: 1185
2022-12-08 21:29:44.453 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193892
2022-12-08 21:29:44.453 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193892
2022-12-08 21:29:44.453 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193892::seqNum:0; Time (ms) since creation: 1185; Size of bundle payload (bytes):331
2022-12-08 21:29:44.455 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130195079::seqNum:0
2022-12-08 21:29:44.455 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130195079
2022-12-08 21:29:44.456 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130195079
2022-12-08 21:29:44.456 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193892
2022-12-08 21:29:44.457 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:44.457 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.6647522502804718
2022-12-08 21:29:44.458 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:44.461 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" : 130195079
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzODkyCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:44.464 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193892::seqNum:0; Time (ms) since creation: 1195; Size of bundle payload (bytes):331
2022-12-08 21:29:44.492 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130195079::seqNum:0; Time (ms) since creation: 37; Size of bundle payload (bytes):312
2022-12-08 21:29:44.492 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130195079::seqNum:0; Time (ms) since creation: 37
2022-12-08 21:29:44.492 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130195079
2022-12-08 21:29:44.566 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54788
2022-12-08 21:29:44.572 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193956::seqNum:0"
2022-12-08 21:29:44.573 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.3644133219832172
2022-12-08 21:29:44.573 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193956::seqNum:0; Time (ms) since creation: 1241
2022-12-08 21:29:44.573 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193956
2022-12-08 21:29:44.575 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193956
2022-12-08 21:29:44.575 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193956::seqNum:0; Time (ms) since creation: 1243; Size of bundle payload (bytes):36
2022-12-08 21:29:44.575 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130195199::seqNum:0
2022-12-08 21:29:44.576 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130195199
2022-12-08 21:29:44.576 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.7038160754289856
2022-12-08 21:29:44.576 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:44.576 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 130193956
2022-12-08 21:29:44.579 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:29:44.580 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 130195199
2022-12-08 21:29:44.580 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" : 130195199
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMwMTkzOTU2CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:29:44.581 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:130193956::seqNum:0; Time (ms) since creation: 1249; Size of bundle payload (bytes):36
2022-12-08 21:29:44.603 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:130195199::seqNum:0; Time (ms) since creation: 28; Size of bundle payload (bytes):312
2022-12-08 21:29:44.603 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:130195199::seqNum:0; Time (ms) since creation: 28
2022-12-08 21:29:44.603 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 130195199
2022-12-08 21:29:44.645 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:54796
2022-12-08 21:29:44.651 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:130193998::seqNum:0"
2022-12-08 21:29:44.652 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.7582119415471327
2022-12-08 21:29:44.652 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:130193998::seqNum:0; Time (ms) since creation: 1278
2022-12-08 21:29:44.652 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 130193998
2022-12-08 21:29:44.652 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 130193998
2022-12-08 21:29:44.652 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:130193998::seqNum:0; Time (ms) since creation: 1278; Size of bundle payload (bytes):723
2022-12-08 21:29:44.655 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:130195279::seqNum:0
2022-12-08 21:29:44.655 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 130195279
2022-12-08 21:29:44.656 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.8271003421841617
2022-12-08 21:29:44.656 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:29:44.658 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" : 130195279
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {