-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger_b.log.1110
More file actions
5018 lines (5018 loc) · 335 KB
/
logger_b.log.1110
File metadata and controls
5018 lines (5018 loc) · 335 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:56:12.495 INFO SendStrings.App main Starting main app
2022-12-08 21:56:12.879 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 21:56:12.880 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 21:56:12.893 INFO Configs.ConvergenceLayerParams readConvergenceLayerConfigFile Parsed config file info
2022-12-08 21:56:12.893 INFO Configs.ConvergenceLayerParams getInstance Created ConvergenceLayerParams singleton
2022-12-08 21:56:12.893 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 21:56:12.894 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 21:56:12.896 INFO BPv7.AdminElementStatusReportBuilder getInstance Created AdminElementStatusReportBuilder singleton
2022-12-08 21:56:12.897 INFO BPv7.AdminElementStatusReportRcode getInstance Created AdminElementStatusReportRcode singleton
2022-12-08 21:56:12.900 INFO BPv7.AdminElement getInstance Created AdminElement singleton
2022-12-08 21:56:12.907 INFO DTCP.DTCP getInstance Created DTCP singleton
2022-12-08 21:56:12.907 INFO BPv7.BPAUtils getInstance Created BPA singleton
2022-12-08 21:56:12.912 INFO BPv7.ApplicationAgent getInstance Created ApplicationAgent singleton
2022-12-08 21:56:12.913 INFO SendStrings.App receiveSync Starting AA and subclass threads
2022-12-08 21:56:12.914 INFO SendStrings.App receiveSync Receiving SYNC message on host b
2022-12-08 21:56:12.916 INFO BPv7.BPA <init> Started BPA sending and receiving threads
2022-12-08 21:56:12.917 INFO BPv7.BPA getInstance Created BPA singleton
2022-12-08 21:56:12.919 INFO DTCP.DTCPServer run DTCP Server Started
2022-12-08 21:56:17.342 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47220
2022-12-08 21:56:17.432 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131787693::seqNum:0"
2022-12-08 21:56:17.457 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.6733105485522287
2022-12-08 21:56:17.460 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131787693::seqNum:0; Time (ms) since creation: 389
2022-12-08 21:56:17.461 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131787693
2022-12-08 21:56:17.462 INFO SendStrings.App receiveSync Verified SYNC from a, replying in kind
2022-12-08 21:56:17.462 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131788086::seqNum:0
2022-12-08 21:56:17.463 INFO BPv7.BPA send saving the bundle, timestamp: 131788086
2022-12-08 21:56:17.463 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.6116107058846294
2022-12-08 21:56:17.463 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:17.468 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131787693
2022-12-08 21:56:17.476 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131787693::seqNum:0; Time (ms) since creation: 403; Size of bundle payload (bytes):89
2022-12-08 21:56:17.487 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131787693::seqNum:0; Time (ms) since creation: 399; Size of bundle payload (bytes):89
2022-12-08 21:56:17.508 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131788086
2022-12-08 21:56:17.508 WARNING SendStrings.App receiveSync Host b finished with SYNC receive
2022-12-08 21:56:17.512 WARNING SendStrings.App main Host b:: Starting scenario #1110:: "High density of packets, large packets, low density of expected downs"
2022-12-08 21:56:17.527 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" : 131788086
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "U2NlbmFyaW8gPSAxMTEwOjogIkhpZ2ggZGVuc2l0eSBvZiBwYWNrZXRzLCBsYXJnZSBwYWNrZXRzLCBsb3cgZGVuc2l0eSBvZiBleHBlY3RlZCBkb3ducyI=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:17.531 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131788086::seqNum:0; Time (ms) since creation: 69; Size of bundle payload (bytes):89
2022-12-08 21:56:17.533 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131788086::seqNum:0; Time (ms) since creation: 71
2022-12-08 21:56:17.534 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131788086
2022-12-08 21:56:17.651 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47230
2022-12-08 21:56:17.710 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788216::seqNum:0"
2022-12-08 21:56:17.711 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.29125672218139287
2022-12-08 21:56:17.711 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788216::seqNum:0; Time (ms) since creation: 119
2022-12-08 21:56:17.712 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788216
2022-12-08 21:56:17.712 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788216
2022-12-08 21:56:17.713 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788216::seqNum:0; Time (ms) since creation: 121; Size of bundle payload (bytes):9063
2022-12-08 21:56:17.716 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788216
2022-12-08 21:56:17.716 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:17.718 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788216::seqNum:0; Time (ms) since creation: 126; Size of bundle payload (bytes):9063
2022-12-08 21:56:17.718 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131788342::seqNum:0
2022-12-08 21:56:17.735 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131788342
2022-12-08 21:56:17.736 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131788342
2022-12-08 21:56:17.736 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.9637889707653238
2022-12-08 21:56:17.736 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:17.760 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" : 131788342
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4MjE2CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:17.764 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131788342::seqNum:0; Time (ms) since creation: 46; Size of bundle payload (bytes):312
2022-12-08 21:56:17.765 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47234
2022-12-08 21:56:17.771 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131788342::seqNum:0; Time (ms) since creation: 52
2022-12-08 21:56:17.771 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131788342
2022-12-08 21:56:17.898 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788264::seqNum:0"
2022-12-08 21:56:17.899 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.758778556740053
2022-12-08 21:56:17.913 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788264::seqNum:0; Time (ms) since creation: 273; Size of bundle payload (bytes):9739
2022-12-08 21:56:17.916 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788264::seqNum:0; Time (ms) since creation: 276
2022-12-08 21:56:17.921 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788264
2022-12-08 21:56:17.921 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788264
2022-12-08 21:56:17.922 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788264::seqNum:0; Time (ms) since creation: 282; Size of bundle payload (bytes):9739
2022-12-08 21:56:17.922 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788264
2022-12-08 21:56:17.922 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:17.924 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47244
2022-12-08 21:56:17.926 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131788550::seqNum:0
2022-12-08 21:56:17.927 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131788550
2022-12-08 21:56:17.927 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.9272711831422904
2022-12-08 21:56:17.927 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:17.929 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131788550
2022-12-08 21:56:17.934 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" : 131788550
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4MjY0CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:17.967 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131788550::seqNum:0; Time (ms) since creation: 41; Size of bundle payload (bytes):312
2022-12-08 21:56:17.968 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131788550::seqNum:0; Time (ms) since creation: 42
2022-12-08 21:56:17.968 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131788550
2022-12-08 21:56:18.041 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47260
2022-12-08 21:56:18.053 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788310::seqNum:0"
2022-12-08 21:56:18.053 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.47491591032392266
2022-12-08 21:56:18.053 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788310::seqNum:0; Time (ms) since creation: 367
2022-12-08 21:56:18.054 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788310
2022-12-08 21:56:18.054 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788310
2022-12-08 21:56:18.054 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788310::seqNum:0; Time (ms) since creation: 368; Size of bundle payload (bytes):10458
2022-12-08 21:56:18.055 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788310
2022-12-08 21:56:18.055 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:18.060 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131788684::seqNum:0
2022-12-08 21:56:18.061 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131788684
2022-12-08 21:56:18.061 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.9500381397579384
2022-12-08 21:56:18.061 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:18.065 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" : 131788684
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4MzEwCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:18.066 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131788684
2022-12-08 21:56:18.068 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788310::seqNum:0; Time (ms) since creation: 382; Size of bundle payload (bytes):10458
2022-12-08 21:56:18.100 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131788684::seqNum:0; Time (ms) since creation: 40; Size of bundle payload (bytes):312
2022-12-08 21:56:18.100 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131788684::seqNum:0; Time (ms) since creation: 40
2022-12-08 21:56:18.100 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131788684
2022-12-08 21:56:18.209 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47270
2022-12-08 21:56:18.282 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788364::seqNum:0"
2022-12-08 21:56:18.286 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.48320151103961295
2022-12-08 21:56:18.286 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788364::seqNum:0; Time (ms) since creation: 546; Size of bundle payload (bytes):10258
2022-12-08 21:56:18.286 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788364::seqNum:0; Time (ms) since creation: 546
2022-12-08 21:56:18.286 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788364
2022-12-08 21:56:18.287 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788364
2022-12-08 21:56:18.287 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788364::seqNum:0; Time (ms) since creation: 547; Size of bundle payload (bytes):10258
2022-12-08 21:56:18.289 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788364
2022-12-08 21:56:18.290 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:18.291 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131788915::seqNum:0
2022-12-08 21:56:18.291 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131788915
2022-12-08 21:56:18.291 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.552089911676642
2022-12-08 21:56:18.291 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:18.296 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131788915
2022-12-08 21:56:18.297 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" : 131788915
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4MzY0CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:18.368 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131788915::seqNum:0; Time (ms) since creation: 77; Size of bundle payload (bytes):312
2022-12-08 21:56:18.368 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131788915::seqNum:0; Time (ms) since creation: 77
2022-12-08 21:56:18.368 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131788915
2022-12-08 21:56:18.441 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47278
2022-12-08 21:56:18.558 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47288
2022-12-08 21:56:18.608 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788418::seqNum:0"
2022-12-08 21:56:18.609 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.42216980479293276
2022-12-08 21:56:18.619 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788418::seqNum:0; Time (ms) since creation: 825
2022-12-08 21:56:18.619 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788418
2022-12-08 21:56:18.619 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788418
2022-12-08 21:56:18.619 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788418::seqNum:0; Time (ms) since creation: 825; Size of bundle payload (bytes):10624
2022-12-08 21:56:18.620 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788418
2022-12-08 21:56:18.625 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:18.621 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788418::seqNum:0; Time (ms) since creation: 827; Size of bundle payload (bytes):10624
2022-12-08 21:56:18.627 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131789251::seqNum:0
2022-12-08 21:56:18.627 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131789251
2022-12-08 21:56:18.628 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.5558543132586676
2022-12-08 21:56:18.628 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:18.632 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131789251
2022-12-08 21:56:18.633 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" : 131789251
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4NDE4CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:18.675 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131789251::seqNum:0; Time (ms) since creation: 48; Size of bundle payload (bytes):312
2022-12-08 21:56:18.675 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131789251::seqNum:0; Time (ms) since creation: 48
2022-12-08 21:56:18.675 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131789251
2022-12-08 21:56:18.748 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47304
2022-12-08 21:56:18.793 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47318
2022-12-08 21:56:18.865 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788628::seqNum:0"
2022-12-08 21:56:18.874 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.2632985951112623
2022-12-08 21:56:18.874 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788628::seqNum:0; Time (ms) since creation: 870
2022-12-08 21:56:18.874 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788628
2022-12-08 21:56:18.875 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788628
2022-12-08 21:56:18.875 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788628::seqNum:0; Time (ms) since creation: 871; Size of bundle payload (bytes):9162
2022-12-08 21:56:18.876 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788628
2022-12-08 21:56:18.876 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:18.878 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131789502::seqNum:0
2022-12-08 21:56:18.879 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131789502
2022-12-08 21:56:18.879 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.6883637119755611
2022-12-08 21:56:18.879 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:18.883 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" : 131789502
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4NjI4CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:18.884 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131789502
2022-12-08 21:56:18.886 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47320
2022-12-08 21:56:18.887 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788628::seqNum:0; Time (ms) since creation: 883; Size of bundle payload (bytes):9162
2022-12-08 21:56:18.918 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131789502::seqNum:0; Time (ms) since creation: 40; Size of bundle payload (bytes):312
2022-12-08 21:56:18.919 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131789502::seqNum:0; Time (ms) since creation: 41
2022-12-08 21:56:18.919 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131789502
2022-12-08 21:56:18.971 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788682::seqNum:0"
2022-12-08 21:56:18.973 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.06947779890810502
2022-12-08 21:56:18.973 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788682::seqNum:0; Time (ms) since creation: 915
2022-12-08 21:56:18.974 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788682
2022-12-08 21:56:18.974 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788682
2022-12-08 21:56:18.974 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788682::seqNum:0; Time (ms) since creation: 916; Size of bundle payload (bytes):9195
2022-12-08 21:56:18.976 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788682
2022-12-08 21:56:18.976 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:18.978 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131789602::seqNum:0
2022-12-08 21:56:18.978 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131789602
2022-12-08 21:56:18.978 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.8816739503208628
2022-12-08 21:56:18.978 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:18.982 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" : 131789602
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4NjgyCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:18.983 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131789602
2022-12-08 21:56:18.987 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788682::seqNum:0; Time (ms) since creation: 929; Size of bundle payload (bytes):9195
2022-12-08 21:56:18.987 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788579::seqNum:0"
2022-12-08 21:56:18.987 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788579::seqNum:0; Time (ms) since creation: 1032
2022-12-08 21:56:18.988 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788579
2022-12-08 21:56:18.988 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788579
2022-12-08 21:56:18.988 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788579::seqNum:0; Time (ms) since creation: 1033; Size of bundle payload (bytes):9900
2022-12-08 21:56:18.988 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788579
2022-12-08 21:56:18.988 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:18.992 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131789616::seqNum:0
2022-12-08 21:56:18.992 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131789616
2022-12-08 21:56:18.992 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131789616
2022-12-08 21:56:18.993 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788579::seqNum:0; Time (ms) since creation: 1038; Size of bundle payload (bytes):9900
2022-12-08 21:56:19.013 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131789602::seqNum:0; Time (ms) since creation: 35; Size of bundle payload (bytes):312
2022-12-08 21:56:19.013 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131789602::seqNum:0; Time (ms) since creation: 35
2022-12-08 21:56:19.014 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131789602
2022-12-08 21:56:19.014 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.5039733529329107
2022-12-08 21:56:19.014 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:19.019 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" : 131789616
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4NTc5CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:19.055 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131789616::seqNum:0; Time (ms) since creation: 63; Size of bundle payload (bytes):312
2022-12-08 21:56:19.056 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131789616::seqNum:0; Time (ms) since creation: 64
2022-12-08 21:56:19.056 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131789616
2022-12-08 21:56:19.057 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47324
2022-12-08 21:56:19.087 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788474::seqNum:0"
2022-12-08 21:56:19.091 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.56567319560051
2022-12-08 21:56:19.091 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788474::seqNum:0; Time (ms) since creation: 1241
2022-12-08 21:56:19.092 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788474
2022-12-08 21:56:19.092 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788474
2022-12-08 21:56:19.092 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788474::seqNum:0; Time (ms) since creation: 1242; Size of bundle payload (bytes):10883
2022-12-08 21:56:19.095 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131789719::seqNum:0
2022-12-08 21:56:19.095 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131789719
2022-12-08 21:56:19.095 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:19.099 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" : 131789719
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4NDc0CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:19.100 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788474
2022-12-08 21:56:19.100 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:19.101 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131789719
2022-12-08 21:56:19.120 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788474::seqNum:0; Time (ms) since creation: 1270; Size of bundle payload (bytes):10883
2022-12-08 21:56:19.127 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788531::seqNum:0"
2022-12-08 21:56:19.129 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.49771987851000665
2022-12-08 21:56:19.130 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788531::seqNum:0; Time (ms) since creation: 1223
2022-12-08 21:56:19.130 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788531
2022-12-08 21:56:19.130 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788531
2022-12-08 21:56:19.130 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788531::seqNum:0; Time (ms) since creation: 1223; Size of bundle payload (bytes):10078
2022-12-08 21:56:19.133 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131789757::seqNum:0
2022-12-08 21:56:19.133 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131789757
2022-12-08 21:56:19.133 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131789757
2022-12-08 21:56:19.133 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788531
2022-12-08 21:56:19.134 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:19.135 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788531::seqNum:0; Time (ms) since creation: 1228; Size of bundle payload (bytes):10078
2022-12-08 21:56:19.153 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131789719::seqNum:0; Time (ms) since creation: 58; Size of bundle payload (bytes):312
2022-12-08 21:56:19.154 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131789719::seqNum:0; Time (ms) since creation: 58
2022-12-08 21:56:19.154 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131789719
2022-12-08 21:56:19.154 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.8000675089880046
2022-12-08 21:56:19.154 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:19.159 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" : 131789757
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4NTMxCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:19.181 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47328
2022-12-08 21:56:19.188 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131789757::seqNum:0; Time (ms) since creation: 55; Size of bundle payload (bytes):312
2022-12-08 21:56:19.188 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131789757::seqNum:0; Time (ms) since creation: 55
2022-12-08 21:56:19.188 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131789757
2022-12-08 21:56:19.269 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47344
2022-12-08 21:56:19.314 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47360
2022-12-08 21:56:19.386 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788826::seqNum:0"
2022-12-08 21:56:19.386 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.42938773647690975
2022-12-08 21:56:19.389 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788826::seqNum:0; Time (ms) since creation: 1187
2022-12-08 21:56:19.390 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788826
2022-12-08 21:56:19.390 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788826
2022-12-08 21:56:19.390 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788826::seqNum:0; Time (ms) since creation: 1188; Size of bundle payload (bytes):9031
2022-12-08 21:56:19.393 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131790017::seqNum:0
2022-12-08 21:56:19.390 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788826
2022-12-08 21:56:19.393 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:19.394 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131790017
2022-12-08 21:56:19.394 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.10191998506084066
2022-12-08 21:56:19.395 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:19.397 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131790017
2022-12-08 21:56:19.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" : 131790017
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4ODI2CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:19.401 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788826::seqNum:0; Time (ms) since creation: 1199; Size of bundle payload (bytes):9031
2022-12-08 21:56:19.421 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131790017::seqNum:0; Time (ms) since creation: 28; Size of bundle payload (bytes):312
2022-12-08 21:56:19.421 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131790017::seqNum:0; Time (ms) since creation: 28
2022-12-08 21:56:19.421 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131790017
2022-12-08 21:56:19.422 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47366
2022-12-08 21:56:19.467 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788775::seqNum:0"
2022-12-08 21:56:19.467 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.13305479102217577
2022-12-08 21:56:19.468 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788775::seqNum:0; Time (ms) since creation: 1317; Size of bundle payload (bytes):10190
2022-12-08 21:56:19.468 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788775::seqNum:0; Time (ms) since creation: 1317
2022-12-08 21:56:19.468 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788775
2022-12-08 21:56:19.468 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788775
2022-12-08 21:56:19.468 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788775::seqNum:0; Time (ms) since creation: 1317; Size of bundle payload (bytes):10190
2022-12-08 21:56:19.471 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131790095::seqNum:0
2022-12-08 21:56:19.471 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131790095
2022-12-08 21:56:19.471 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.5545483802687561
2022-12-08 21:56:19.472 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:19.474 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788775
2022-12-08 21:56:19.474 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:19.475 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131790095
2022-12-08 21:56:19.476 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" : 131790095
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4Nzc1CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:19.505 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131790095::seqNum:0; Time (ms) since creation: 34; Size of bundle payload (bytes):312
2022-12-08 21:56:19.505 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131790095::seqNum:0; Time (ms) since creation: 34
2022-12-08 21:56:19.505 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131790095
2022-12-08 21:56:19.524 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47374
2022-12-08 21:56:19.554 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788740::seqNum:0"
2022-12-08 21:56:19.555 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.27638157307362743
2022-12-08 21:56:19.555 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788740::seqNum:0; Time (ms) since creation: 1439
2022-12-08 21:56:19.555 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788740
2022-12-08 21:56:19.556 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788740
2022-12-08 21:56:19.556 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788740::seqNum:0; Time (ms) since creation: 1440; Size of bundle payload (bytes):10789
2022-12-08 21:56:19.558 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131790182::seqNum:0
2022-12-08 21:56:19.558 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131790182
2022-12-08 21:56:19.559 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.47671304240711576
2022-12-08 21:56:19.559 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:19.560 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788740
2022-12-08 21:56:19.560 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:19.563 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" : 131790182
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4NzQwCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:19.563 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131790182
2022-12-08 21:56:19.581 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788740::seqNum:0; Time (ms) since creation: 1465; Size of bundle payload (bytes):10789
2022-12-08 21:56:19.618 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131790182::seqNum:0; Time (ms) since creation: 60; Size of bundle payload (bytes):312
2022-12-08 21:56:19.619 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131790182::seqNum:0; Time (ms) since creation: 61
2022-12-08 21:56:19.619 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131790182
2022-12-08 21:56:19.665 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788983::seqNum:0"
2022-12-08 21:56:19.667 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.24502584098583868
2022-12-08 21:56:19.667 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788983::seqNum:0; Time (ms) since creation: 1308
2022-12-08 21:56:19.668 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788983
2022-12-08 21:56:19.668 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788983
2022-12-08 21:56:19.668 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788983::seqNum:0; Time (ms) since creation: 1309; Size of bundle payload (bytes):10916
2022-12-08 21:56:19.670 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131790294::seqNum:0
2022-12-08 21:56:19.670 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131790294
2022-12-08 21:56:19.670 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.7201480704198545
2022-12-08 21:56:19.671 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:19.672 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788983
2022-12-08 21:56:19.672 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:19.674 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131790294
2022-12-08 21:56:19.675 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" : 131790294
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4OTgzCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:19.677 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788983::seqNum:0; Time (ms) since creation: 1318; Size of bundle payload (bytes):10916
2022-12-08 21:56:19.686 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131790294::seqNum:0; Time (ms) since creation: 16; Size of bundle payload (bytes):312
2022-12-08 21:56:19.687 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131790294::seqNum:0; Time (ms) since creation: 17
2022-12-08 21:56:19.687 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131790294
2022-12-08 21:56:19.726 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788930::seqNum:0"
2022-12-08 21:56:19.727 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.9099462460331827
2022-12-08 21:56:19.728 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788930::seqNum:0; Time (ms) since creation: 1422
2022-12-08 21:56:19.728 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788930
2022-12-08 21:56:19.728 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788930
2022-12-08 21:56:19.729 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788930::seqNum:0; Time (ms) since creation: 1423; Size of bundle payload (bytes):9974
2022-12-08 21:56:19.730 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788930
2022-12-08 21:56:19.730 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:19.732 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131790356::seqNum:0
2022-12-08 21:56:19.732 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131790356
2022-12-08 21:56:19.733 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.24934898457778998
2022-12-08 21:56:19.733 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:19.734 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131790356
2022-12-08 21:56:19.734 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788930::seqNum:0; Time (ms) since creation: 1428; Size of bundle payload (bytes):9974
2022-12-08 21:56:19.736 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" : 131790356
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4OTMwCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:19.776 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131790356::seqNum:0; Time (ms) since creation: 28; Size of bundle payload (bytes):312
2022-12-08 21:56:19.776 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131790356::seqNum:0; Time (ms) since creation: 44
2022-12-08 21:56:19.776 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131790356
2022-12-08 21:56:19.796 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131788876::seqNum:0"
2022-12-08 21:56:19.805 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.25195148174438176
2022-12-08 21:56:19.812 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131788876::seqNum:0; Time (ms) since creation: 1560; Size of bundle payload (bytes):9799
2022-12-08 21:56:19.812 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131788876::seqNum:0; Time (ms) since creation: 1560
2022-12-08 21:56:19.813 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131788876
2022-12-08 21:56:19.813 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131788876
2022-12-08 21:56:19.813 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131788876::seqNum:0; Time (ms) since creation: 1561; Size of bundle payload (bytes):9799
2022-12-08 21:56:19.815 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131790439::seqNum:0
2022-12-08 21:56:19.815 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131790439
2022-12-08 21:56:19.816 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.3208398674802496
2022-12-08 21:56:19.816 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:19.818 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131788876
2022-12-08 21:56:19.818 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:19.819 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131790439
2022-12-08 21:56:19.820 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" : 131790439
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg4ODc2CiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:19.855 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131790439::seqNum:0; Time (ms) since creation: 40; Size of bundle payload (bytes):312
2022-12-08 21:56:19.856 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131790439::seqNum:0; Time (ms) since creation: 41
2022-12-08 21:56:19.856 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131790439
2022-12-08 21:56:19.957 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47390
2022-12-08 21:56:20.005 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47398
2022-12-08 21:56:20.045 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47402
2022-12-08 21:56:20.094 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131789030::seqNum:0"
2022-12-08 21:56:20.095 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.17828827353330934
2022-12-08 21:56:20.095 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131789030::seqNum:0; Time (ms) since creation: 1689; Size of bundle payload (bytes):9675
2022-12-08 21:56:20.095 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131789030::seqNum:0; Time (ms) since creation: 1689
2022-12-08 21:56:20.095 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131789030
2022-12-08 21:56:20.096 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131789030
2022-12-08 21:56:20.096 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131789030::seqNum:0; Time (ms) since creation: 1690; Size of bundle payload (bytes):9675
2022-12-08 21:56:20.098 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131790722::seqNum:0
2022-12-08 21:56:20.098 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131790722
2022-12-08 21:56:20.098 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.10549519446926314
2022-12-08 21:56:20.098 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:20.101 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" : 131790722
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg5MDMwCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:20.101 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131789030
2022-12-08 21:56:20.101 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:20.102 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131790722
2022-12-08 21:56:20.104 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131790722::seqNum:0; Time (ms) since creation: 6; Size of bundle payload (bytes):312
2022-12-08 21:56:20.105 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131790722::seqNum:0; Time (ms) since creation: 7
2022-12-08 21:56:20.106 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131790722
2022-12-08 21:56:20.128 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131789133::seqNum:0"
2022-12-08 21:56:20.129 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.9845014229819711
2022-12-08 21:56:20.129 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131789133::seqNum:0; Time (ms) since creation: 1620
2022-12-08 21:56:20.129 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131789133
2022-12-08 21:56:20.129 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131789133
2022-12-08 21:56:20.129 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131789133::seqNum:0; Time (ms) since creation: 1620; Size of bundle payload (bytes):10388
2022-12-08 21:56:20.130 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131789133
2022-12-08 21:56:20.130 WARNING SendStrings.App receiveThoseStrings (warn to make it show up in console) Received message from a
2022-12-08 21:56:20.132 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131790756::seqNum:0
2022-12-08 21:56:20.132 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131790756
2022-12-08 21:56:20.133 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131790756
2022-12-08 21:56:20.133 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.06710393244517587
2022-12-08 21:56:20.133 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:20.136 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" : 131790756
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ewogICJzdGF0dXNJbmRpY2F0b3IiIDogWyB7CiAgICAic3RhdHVzIiA6IHRydWUKICB9LCB7CiAgICAic3RhdHVzIiA6IGZhbHNlCiAgfSwgewogICAgInN0YXR1cyIgOiB0cnVlCiAgfSwgewogICAgInN0YXR1cyIgOiBmYWxzZQogIH0gXSwKICAicmVhc29uQ29kZSIgOiAwLAogICJzb3VyY2VCdW5kbGVOb2RlSUQiIDogewogICAgImlkIiA6ICJhIgogIH0sCiAgImNyZWF0aW9uVGltZXN0YW1wIiA6IHsKICAgICJjcmVhdGlvblRpbWUiIDogewogICAgICAidGltZUluTVMiIDogMTMxNzg5MTMzCiAgICB9LAogICAgInNlcU51bSIgOiAwCiAgfQp9",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:56:20.136 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:a::to:b::creationTime:131789133::seqNum:0; Time (ms) since creation: 1627; Size of bundle payload (bytes):10388
2022-12-08 21:56:20.138 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:b::to:a::creationTime:131790756::seqNum:0; Time (ms) since creation: 6; Size of bundle payload (bytes):312
2022-12-08 21:56:20.139 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:b::to:a::creationTime:131790756::seqNum:0; Time (ms) since creation: 7
2022-12-08 21:56:20.139 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131790756
2022-12-08 21:56:20.245 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47406
2022-12-08 21:56:20.284 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:47416
2022-12-08 21:56:20.294 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:a::to:b::creationTime:131789180::seqNum:0"
2022-12-08 21:56:20.295 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 87960931270656, Value: 0.2887472788102443
2022-12-08 21:56:20.295 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:a::to:b::creationTime:131789180::seqNum:0; Time (ms) since creation: 1739
2022-12-08 21:56:20.295 INFO BPv7.BPAReceiver run Sending status report for delivered bundle, timestamp: 131789180
2022-12-08 21:56:20.295 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131789180
2022-12-08 21:56:20.295 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:a::to:b::creationTime:131789180::seqNum:0; Time (ms) since creation: 1739; Size of bundle payload (bytes):9722
2022-12-08 21:56:20.300 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:b::to:a::creationTime:131790924::seqNum:0
2022-12-08 21:56:20.301 INFO BPv7.BPA sendWithAdminFlag saving the bundle with admin flag, timestamp: 131790924
2022-12-08 21:56:20.301 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465897472, Value: 0.8162531883224239
2022-12-08 21:56:20.301 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:56:20.303 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" : 131790924
},
"seqNum" : 0
},
"lifetime" : 50000,