-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogger_a.log.1000
More file actions
1536 lines (1536 loc) · 120 KB
/
logger_a.log.1000
File metadata and controls
1536 lines (1536 loc) · 120 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:49:36.747 INFO SendStrings.App main Starting main app
2022-12-08 21:49:37.126 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 21:49:37.127 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 21:49:37.138 INFO Configs.ConvergenceLayerParams readConvergenceLayerConfigFile Parsed config file info
2022-12-08 21:49:37.138 INFO Configs.ConvergenceLayerParams getInstance Created ConvergenceLayerParams singleton
2022-12-08 21:49:37.139 INFO Configs.SimulationParams readGeneralConfigFile Parsed config file info
2022-12-08 21:49:37.139 INFO Configs.SimulationParams getInstance Created SimulationParameters singleton
2022-12-08 21:49:37.141 INFO BPv7.AdminElementStatusReportBuilder getInstance Created AdminElementStatusReportBuilder singleton
2022-12-08 21:49:37.142 INFO BPv7.AdminElementStatusReportRcode getInstance Created AdminElementStatusReportRcode singleton
2022-12-08 21:49:37.145 INFO BPv7.AdminElement getInstance Created AdminElement singleton
2022-12-08 21:49:37.148 INFO DTCP.DTCP getInstance Created DTCP singleton
2022-12-08 21:49:37.149 INFO BPv7.BPAUtils getInstance Created BPA singleton
2022-12-08 21:49:37.149 INFO BPv7.ApplicationAgent getInstance Created ApplicationAgent singleton
2022-12-08 21:49:37.150 INFO SendStrings.App sendSync Starting AA and subclass threads
2022-12-08 21:49:37.150 INFO SendStrings.App sendSync Sending first sync from host a
2022-12-08 21:49:37.161 INFO BPv7.BPA <init> Started BPA sending and receiving threads
2022-12-08 21:49:37.162 INFO BPv7.BPA getInstance Created BPA singleton
2022-12-08 21:49:37.162 INFO DTCP.DTCPServer run DTCP Server Started
2022-12-08 21:49:37.171 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131387787::seqNum:0
2022-12-08 21:49:37.172 INFO BPv7.BPA send saving the bundle, timestamp: 131387787
2022-12-08 21:49:37.178 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.4578626945625882
2022-12-08 21:49:37.179 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:37.212 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131387787
2022-12-08 21:49:37.213 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:forwarding::creationTime:131387837::seqNum:0
2022-12-08 21:49:37.214 INFO BPv7.BPA send saving the bundle, timestamp: 131387837
2022-12-08 21:49:37.215 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131387837
2022-12-08 21:49:37.241 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 0,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131387787
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "U2NlbmFyaW8gPSAxMDAwOjogIkxvdyBkZW5zaXR5IG9mIHBhY2tldHMsIHNtYWxsIHBhY2tldHMsIGxvdyBkZW5zaXR5IG9mIGV4cGVjdGVkIGRvd25zIg==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:37.282 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131387787::seqNum:0; Time (ms) since creation: 107; Size of bundle payload (bytes):88
2022-12-08 21:49:37.287 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131387787::seqNum:0; Time (ms) since creation: 122
2022-12-08 21:49:37.289 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131387787
2022-12-08 21:49:37.293 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.8191573993784399
2022-12-08 21:49:37.301 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:37.301 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.17838602969679984
2022-12-08 21:49:37.326 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 0,
"destNode" : {
"id" : "forwarding"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131387837
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "U2NlbmFyaW8gPSAxMDAwOjogIkxvdyBkZW5zaXR5IG9mIHBhY2tldHMsIHNtYWxsIHBhY2tldHMsIGxvdyBkZW5zaXR5IG9mIGV4cGVjdGVkIGRvd25zIg==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:37.333 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:forwarding::creationTime:131387837::seqNum:0; Time (ms) since creation: 120; Size of bundle payload (bytes):88
2022-12-08 21:49:37.334 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:forwarding::creationTime:131387837::seqNum:0; Time (ms) since creation: 121
2022-12-08 21:49:37.336 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131387837
2022-12-08 21:49:37.494 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33164
2022-12-08 21:49:37.558 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131388052::seqNum:0"
2022-12-08 21:49:37.558 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.18307864543185992
2022-12-08 21:49:37.559 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131388052::seqNum:0; Time (ms) since creation: 131
2022-12-08 21:49:37.559 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131388052
2022-12-08 21:49:37.560 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131388052::seqNum:0; Time (ms) since creation: 132; Size of bundle payload (bytes):88
2022-12-08 21:49:37.560 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131388052
2022-12-08 21:49:37.565 INFO SendStrings.App sendSync Forwarding SYNC'd!!
2022-12-08 21:49:37.568 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131388052::seqNum:0; Time (ms) since creation: 130; Size of bundle payload (bytes):88
2022-12-08 21:49:37.706 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33170
2022-12-08 21:49:37.740 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131388235::seqNum:0"
2022-12-08 21:49:37.740 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.41633206068705264
2022-12-08 21:49:37.741 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131388235::seqNum:0; Time (ms) since creation: 130
2022-12-08 21:49:37.741 INFO BPv7.BPAReceiver run Added bundle to the queue for AA, timestamp: 131388235
2022-12-08 21:49:37.741 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131388235::seqNum:0; Time (ms) since creation: 130; Size of bundle payload (bytes):88
2022-12-08 21:49:37.741 INFO BPv7.BPA getPayload sending payload of the bundle to AA, timestamp: 131388235
2022-12-08 21:49:37.742 INFO SendStrings.App sendSync B SYNC'd!!
2022-12-08 21:49:37.742 INFO SendStrings.App sendSync Host a finished with SYNC send
2022-12-08 21:49:37.742 WARNING SendStrings.App main Host a:: Starting scenario #1000:: "Low density of packets, small packets, low density of expected downs"
2022-12-08 21:49:37.745 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536177743
2022-12-08 21:49:37.745 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131388369::seqNum:0
2022-12-08 21:49:37.746 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131388369
2022-12-08 21:49:37.746 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.2757070557976091
2022-12-08 21:49:37.746 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:37.751 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131388369
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "ovme013XrBo0xHCMODNYtN2IosPDsFb4YQtpAKHW45zXFpArTHyffGBXSANHXSJtFqnylKfLWthUtdQb2+cWSdN/7vgQh0+dKicQgq+GLPe4KKdawgI6df39UUlEjmeg63mtPqp31aq79rCZISF/N0u5I2pc0zcyCP3fCOYCJQj4c2ZaShMGc2K4WeigCI91GMrsRTKftvyFR9WdXbq2/Ngy+4jYVnqWEM7AhQP6+Iix/O/A9Ua80Gi4JAxdwwiK7A2hp285s5jb2RxR",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:37.751 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131388369
2022-12-08 21:49:37.758 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131388235::seqNum:0; Time (ms) since creation: 147; Size of bundle payload (bytes):88
2022-12-08 21:49:37.760 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131388369::seqNum:0; Time (ms) since creation: 15; Size of bundle payload (bytes):204
2022-12-08 21:49:37.761 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131388369::seqNum:0; Time (ms) since creation: 16
2022-12-08 21:49:37.762 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131388369
2022-12-08 21:49:37.815 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33186
2022-12-08 21:49:37.869 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131388416::seqNum:0"
2022-12-08 21:49:37.870 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.6415453363872681
2022-12-08 21:49:37.870 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131388416::seqNum:0; Time (ms) since creation: 78
2022-12-08 21:49:37.870 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:37.870 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131388416::seqNum:0; Time (ms) since creation: 78; Size of bundle payload (bytes):312
2022-12-08 21:49:37.875 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131388416::seqNum:0; Time (ms) since creation: 83; Size of bundle payload (bytes):312
2022-12-08 21:49:37.892 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33198
2022-12-08 21:49:37.903 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131388471::seqNum:0"
2022-12-08 21:49:37.903 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.184856045581561
2022-12-08 21:49:37.904 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131388471::seqNum:0; Time (ms) since creation: 57; Size of bundle payload (bytes):312
2022-12-08 21:49:37.904 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131388471::seqNum:0; Time (ms) since creation: 57
2022-12-08 21:49:37.904 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:37.904 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131388471::seqNum:0; Time (ms) since creation: 57; Size of bundle payload (bytes):312
2022-12-08 21:49:37.915 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536177915
2022-12-08 21:49:37.916 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131388540::seqNum:0
2022-12-08 21:49:37.916 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131388540
2022-12-08 21:49:37.916 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131388540
2022-12-08 21:49:37.917 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.7942310518679884
2022-12-08 21:49:37.917 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:37.921 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131388540
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "CMlC8Sp1tUiZO2dP3D4Dx38eNyr5SO7p0nO0Msd2SNukeS02Hm5GnMctilkj2ie72G85Kd8OIkxO7yPhewktx9nJWAYm4iZgZf4lk/qfvDFpsxn7Ucz7kHhTIwhmcnVYLcGBbUU5IYrj6xnnTUnyB9jwxKLJgyyptEADyn2KsAyIB6p8EP6BirblLo24hTN3b/JrAZdvTrCqlPllqFjDFrYNvtwxHDpb1yjT3RCeoRCddZOyX6hc4cVOqkxEXH3A5sWnQ+VumkBE7PxB2uaSjXPryfqZGwn7s4Q4UqKne10t7M9Wfp+CN34dBlfSAn1FKMkkwhDSarPoZtGAhcpk/ATfTyThUx3uCi2Txmb19PyWaOfVZIa+jxpV47qojMfaxgdWggitg+3w6taCOQWvzLp49faIizOSxgJzUDZ4Jh8z035SgRXiSz9zxQ+gbqgSN/7yjEQD/7Sqq0DnUDT6g/A5JN3tX/jXhyoIQijm5LrU4zMwtGQvF0lYr5mLr7RtBdnlNoI1DzBdysRkDutpsPka3Z7HUvoUajKg/G8aD11dmuvoitS8n9p9iQfF6WHyNkzZG8HCfkKZ6bPQ+bEszkntpOLiHhPxHQ7wzXQukZy9F4OouXI1ZaUnpH8ZWlxc/o4GEnz4EJfEHsp6daeGLeM=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:37.924 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131388540::seqNum:0; Time (ms) since creation: 8; Size of bundle payload (bytes):497
2022-12-08 21:49:37.925 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131388540::seqNum:0; Time (ms) since creation: 9
2022-12-08 21:49:37.925 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131388540
2022-12-08 21:49:38.004 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33206
2022-12-08 21:49:38.056 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33214
2022-12-08 21:49:38.059 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131388587::seqNum:0"
2022-12-08 21:49:38.060 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.4058414294663214
2022-12-08 21:49:38.060 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131388587::seqNum:0; Time (ms) since creation: 97; Size of bundle payload (bytes):312
2022-12-08 21:49:38.060 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131388587::seqNum:0; Time (ms) since creation: 97
2022-12-08 21:49:38.065 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.065 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131388587::seqNum:0; Time (ms) since creation: 102; Size of bundle payload (bytes):312
2022-12-08 21:49:38.079 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131388615::seqNum:0"
2022-12-08 21:49:38.079 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131388615::seqNum:0; Time (ms) since creation: 88
2022-12-08 21:49:38.079 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.080 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131388615::seqNum:0; Time (ms) since creation: 88; Size of bundle payload (bytes):312
2022-12-08 21:49:38.082 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536178082
2022-12-08 21:49:38.082 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131388706::seqNum:0
2022-12-08 21:49:38.083 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131388706
2022-12-08 21:49:38.083 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131388706
2022-12-08 21:49:38.083 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.39021643389010363
2022-12-08 21:49:38.083 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:38.088 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131388706
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "EuOI3d31cLh3eugY2HcyeKNHvt4oblSn4+0O+6X9eN8D3Gghn1ovq15vz5PeWcz5GueGNnKsM1WHpZeaNNLjgLBz7T/wZ2FipTvqSn7RM8AMCFdqYC34b+ybFDWlTldm3rOzShL7Nyn/iQ8q4y40qF6Y0SSwfKOAtmFwKSwXxyO0TkNJ2XtHxyD+aJrrYFZ+mtDb5u9FsODLjDCc8SWTiT/HbScwG2/TQtEPL6qXKnhuZPahA/ueSdac73GRFblz7yk65JRh+YuhfvBI5bYzjy1DXIWiygBCx+9+1Jw79GAYVV8wlw3QA/9/xw2YmN6BTOgI29jmehtRxqJJGJPWMnLRjsleQt3VIRpJ9nEfL6LmOwiUhRt8amtYmo78diTPmjoShiQG9NhPOcbnUhkNJTkDsu3dtJ590Pnl37Ys/VmPN30ytRDaf9hd4EXS8VpYJ+Gya+a18F9/Tv0Qpj6aZzUDdhnz6UyqjJgeqb00QAG25gQ9/V6cXjuP59uhpq/T1YTWS1VYHK1Al3XvkOBRJ5CzOQRSBKvfC97nHG/ItuOb+KeFYx+0QE7BFCz+iIK8hCa45Wc03JS7qq9CTDyu+Bcou9o7Dq/WEmQKlG1JBOUDns+wlC7LulonyRdraRhcvTLfKw9eTZBu75DleYeGHaTIwvKGqdwhuswrLm7wQqNl5vjDpWDosEZCF/BxhXkhoAUsxbzprjP07iyi8OUgu8unfGLWfr3wBQdW09XEQT5WVV0zCSgGBeFhPp773EHuEOsMZw+HqoUXIARE3jiFs8jZnSQVSG/JoS0tBZLBrx03PD/I00u1EG0k/KT2SPzbHedm09zeEqsYU9LsKYO99KnXyf02knjg/OvkCzujcB0dpAL8LYlyHmygZx8njxAXstKbDGNQ0CE+LK9YAd/TCbg6Lhcskg==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:38.091 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131388706::seqNum:0; Time (ms) since creation: 9; Size of bundle payload (bytes):694
2022-12-08 21:49:38.092 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131388706::seqNum:0; Time (ms) since creation: 10
2022-12-08 21:49:38.092 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131388706
2022-12-08 21:49:38.103 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131388615::seqNum:0; Time (ms) since creation: 112; Size of bundle payload (bytes):312
2022-12-08 21:49:38.146 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33220
2022-12-08 21:49:38.191 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131388753::seqNum:0"
2022-12-08 21:49:38.191 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.174736356265911
2022-12-08 21:49:38.192 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131388753::seqNum:0; Time (ms) since creation: 63
2022-12-08 21:49:38.192 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.192 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131388753::seqNum:0; Time (ms) since creation: 63; Size of bundle payload (bytes):312
2022-12-08 21:49:38.213 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131388753::seqNum:0; Time (ms) since creation: 84; Size of bundle payload (bytes):312
2022-12-08 21:49:38.250 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33232
2022-12-08 21:49:38.270 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536178270
2022-12-08 21:49:38.271 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131388895::seqNum:0
2022-12-08 21:49:38.271 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131388895
2022-12-08 21:49:38.272 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131388895
2022-12-08 21:49:38.272 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.025355272880702828
2022-12-08 21:49:38.272 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:38.276 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131388895
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "GDxfqa8kel9N75euf5ihJ9DpEeedWHe6xEAdDSxcOb4lqcf5UVuxxFpls8opv57bZmvSoZy65QR45dIMKp6UV/G3sQsoaXWTGIP7hhCl6gUMdFMNvUvycb53lCHX55Dw9dP4Jb/WocaoHb5XsaXRuzfJUC37f023RHj4gHOawQM+gprFoggC9eFPxeEwghm4Lc+3dpTj6pSp1KNdI7Oxye9/QC7iO4cRzvwuGNHxAv2MDyVojl9KhwQSB8pv453lvTCAvZSSkbguIsJLgMK8EcEPHBktjvWqW0emFMI5KUlxXSmEUjCe0/P6q49Kieqhknfz3n4fo50t6HUW7lnOnWpCPvq4Zux0xPHOquLiILiVh69L0E2yheleFrOlRQ/ZGO5u2+jx66x6Yw3IHUR5RrbfRFg2YvAMdHf4OQC1pX6C7zFbB0WGw6YxOjt2Wp8ytZX9gAZJ2genmbRu/P41esFU1Oi95pSvCiWZ+4v8+aSlm/o=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:38.282 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131388895::seqNum:0; Time (ms) since creation: 11; Size of bundle payload (bytes):371
2022-12-08 21:49:38.282 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131388895::seqNum:0; Time (ms) since creation: 11
2022-12-08 21:49:38.283 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131388895
2022-12-08 21:49:38.287 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131388821::seqNum:0"
2022-12-08 21:49:38.287 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.2909802721822109
2022-12-08 21:49:38.288 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131388821::seqNum:0; Time (ms) since creation: 91
2022-12-08 21:49:38.288 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.288 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131388821::seqNum:0; Time (ms) since creation: 91; Size of bundle payload (bytes):312
2022-12-08 21:49:38.296 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131388821::seqNum:0; Time (ms) since creation: 99; Size of bundle payload (bytes):312
2022-12-08 21:49:38.349 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33248
2022-12-08 21:49:38.403 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131388956::seqNum:0"
2022-12-08 21:49:38.404 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.21833702591259507
2022-12-08 21:49:38.408 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131388956::seqNum:0; Time (ms) since creation: 76
2022-12-08 21:49:38.409 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.409 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131388956::seqNum:0; Time (ms) since creation: 77; Size of bundle payload (bytes):312
2022-12-08 21:49:38.416 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131388956::seqNum:0; Time (ms) since creation: 84; Size of bundle payload (bytes):312
2022-12-08 21:49:38.423 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33252
2022-12-08 21:49:38.424 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536178424
2022-12-08 21:49:38.425 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131389049::seqNum:0
2022-12-08 21:49:38.425 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131389049
2022-12-08 21:49:38.425 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131389049
2022-12-08 21:49:38.425 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.7027120228857967
2022-12-08 21:49:38.426 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:38.429 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131389049
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "g/karbndFt8cIBnonqrR7G92C9eYWtEKLLXhjDn8fZyJJU/EKy33YoYhsoQVn5blTURWZ9umBRxy+KmbZ4RpMSl70PhJYXZZqBaRo/puqGtPE4oqj6G7C0r+LDQNUk70zDWGa8oriQIVfvtXezpBGdmHlU7cStjg0heUMRwmxw1xuMkobhC+QRHaFKRrbWY2I9MbmjMRF4kZoRb+aKMw3ilspCF0IXxxGvPvjb8PAYG4+SGtx9UnDqTrzE4qJyajme56YiHMrFNc6pWrE6Z/NPdprqYPAdk57PgFvnwxkSF7kH+pQLUinDsc7cAjoqOCleJU3Uanv1jeBKpj4F0NvhwkhrCdpU8JzdKpvVJjXIEaqehd67wPh1ngczK666Ij4BsTl4mGG0BdyLJEJsfRa18Qz1BCW5b3sxsLMNHWGde6+L/aWW7up+p5o+nJSQD3Fk+sO9AUCPE1AUmV0n9n27QITzXnvD9UpUlWfIq2iGRCpmRS4lkV0ppfMoPN5PjZbXUIiQ9IPKF3caANWmiV8LrXq68H7fY=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:38.433 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131389049::seqNum:0; Time (ms) since creation: 7; Size of bundle payload (bytes):407
2022-12-08 21:49:38.451 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131389049::seqNum:0; Time (ms) since creation: 26
2022-12-08 21:49:38.451 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131389049
2022-12-08 21:49:38.468 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33258
2022-12-08 21:49:38.473 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131389018::seqNum:0"
2022-12-08 21:49:38.473 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131389018::seqNum:0; Time (ms) since creation: 79
2022-12-08 21:49:38.473 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.473 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131389018::seqNum:0; Time (ms) since creation: 79; Size of bundle payload (bytes):312
2022-12-08 21:49:38.483 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131389065::seqNum:0"
2022-12-08 21:49:38.484 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131389065::seqNum:0; Time (ms) since creation: 43
2022-12-08 21:49:38.484 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.484 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131389065::seqNum:0; Time (ms) since creation: 43; Size of bundle payload (bytes):312
2022-12-08 21:49:38.487 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131389065::seqNum:0; Time (ms) since creation: 46; Size of bundle payload (bytes):312
2022-12-08 21:49:38.487 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131389018::seqNum:0; Time (ms) since creation: 93; Size of bundle payload (bytes):312
2022-12-08 21:49:38.530 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33260
2022-12-08 21:49:38.540 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131389128::seqNum:0"
2022-12-08 21:49:38.541 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.7101666328558423
2022-12-08 21:49:38.541 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131389128::seqNum:0; Time (ms) since creation: 37
2022-12-08 21:49:38.541 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.542 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131389128::seqNum:0; Time (ms) since creation: 38; Size of bundle payload (bytes):312
2022-12-08 21:49:38.548 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131389128::seqNum:0; Time (ms) since creation: 44; Size of bundle payload (bytes):312
2022-12-08 21:49:38.601 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536178601
2022-12-08 21:49:38.602 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131389226::seqNum:0
2022-12-08 21:49:38.602 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131389226
2022-12-08 21:49:38.603 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131389226
2022-12-08 21:49:38.603 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.32889818216879374
2022-12-08 21:49:38.604 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:38.608 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131389226
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "M5hViXjFqdNQGvcxq+ycWpJnZA9Hx1Di5TAG33Tc9w24NMzheUaKtyVI2wUTTBR0Gc4m6MyCnNuXA0bpYlZr24cAh5x7hBchuR6+qkchxsP5NLlPsGDGKmrKjchLeV92jabJ5TbRC4mM/HnAbRJLIs90qU1yE0TI5ZWtPjSCz8A7Fpx0k0LxdEWClv0DR53qAO+qGAihFoXuNrL0sHCeugYQ9awyhXrDLzM5jFa+v7IyYo3LW93NwFJnbwhqRc076MH5QuV+M5u3pVkrDPaJCNHOiT3GtJA9QIL2dJ+Qyi7dc+TmM8Gz4PBDG2Ob4NHUi2uXLJtG9N/OzPtwoVC1lmdEZCHWy7zUD5xuVc8rblTUqbpMns+rV3NObHxVIK2OC/WH8D0f7l3uQFz2SNfKS2NKgHuIZFuFizm2/La1iTjSxoXlCx/5jI06m8H5Ggo3s4EWS4V8F/HX44X1ULCTQslm8nuWxH4djQZVVaud672DLLZUtktbzPpO+aHFtxhFgeo4I2khARGzKDm0ePvzn1YUTkaw7X/J/UCMcEzq9A==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:38.615 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131389226::seqNum:0; Time (ms) since creation: 13; Size of bundle payload (bytes):415
2022-12-08 21:49:38.617 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131389226::seqNum:0; Time (ms) since creation: 15
2022-12-08 21:49:38.617 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131389226
2022-12-08 21:49:38.682 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33264
2022-12-08 21:49:38.697 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131389250::seqNum:0"
2022-12-08 21:49:38.698 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.0945231889208824
2022-12-08 21:49:38.698 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131389250::seqNum:0; Time (ms) since creation: 72
2022-12-08 21:49:38.698 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.698 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131389250::seqNum:0; Time (ms) since creation: 72; Size of bundle payload (bytes):312
2022-12-08 21:49:38.704 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131389250::seqNum:0; Time (ms) since creation: 78; Size of bundle payload (bytes):312
2022-12-08 21:49:38.704 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33276
2022-12-08 21:49:38.710 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131389282::seqNum:0"
2022-12-08 21:49:38.711 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.35055345619289013
2022-12-08 21:49:38.711 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131389282::seqNum:0; Time (ms) since creation: 53
2022-12-08 21:49:38.711 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.711 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131389282::seqNum:0; Time (ms) since creation: 53; Size of bundle payload (bytes):312
2022-12-08 21:49:38.714 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131389282::seqNum:0; Time (ms) since creation: 56; Size of bundle payload (bytes):312
2022-12-08 21:49:38.832 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536178832
2022-12-08 21:49:38.833 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131389457::seqNum:0
2022-12-08 21:49:38.833 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131389457
2022-12-08 21:49:38.833 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.45987129044885333
2022-12-08 21:49:38.834 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:38.836 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131389457
2022-12-08 21:49:38.841 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131389457
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "UJyOovRDomv8X/6Jy+w+Ki2ba7kNWZeWFX8tjULwzoF32iPI52tRh5VMBoS2KrnbRmHp+Bg6pCiHEty5a7DvLAV5XTz/VnIsbaQzB/BAbG2JdYnBUFTMbnM3HtY8DQ15ZWoT789uu23oCW13Ezz1tXtheLVbw4NB6Y0zqq7QRi/W5prMLVBmo14LNeya10E4t/2NRGFGqzIq7TXC4P0uhu3Scd+2b0E9ni34IWX2Oa1pwLihkazH0i2WLbiTUcJfEXaAbEfOoRJmxiESOavv7tRbFOSbUQo4HjaJGK9SwLD+gGtIhb0mZuymAZY+0ZfZzKzFvzWqPCrZuKM7vvLEZ0NksDlWtIHfWJbML380zTw9+fXrl+Dg5nPrQVpsvsXUxPaFOGYztBFHnEF0bUrgBaJ+h9z+gBnJsu4xNg2e1EM4bLvCpLl1wEobvpZdejVijlBd7yw2KkGQeXbrFyZKOKubD0fCyLP7ZbvKSAX287Ynh1CO5pWjb7zrp+Gjd7l3/pW64Lj5XVSQJGt1AyKH8aa9LBB1/YtoGDB1YPCwT95ijCM5QSHw4TmJul9WjrTi2OBNVCZ+F5s8b2794O2AyOEG/WpchGyMwACfU+N+SAygTbktytnAGvKRg/R62CS41WpBL8wcuBL6sZ1m8QObh3M/zLM3j9WOuJPgf2bJZL1v0clxme2Kka/NGb6tom9x2o7Zd8T2xl1BpRFvdHgdFjEueaiNZ2bjHFmIb6eN8ZXzv1Bw0W7SQfQemZAVPZZodMU17bjdQw5yyGJWU23O7fFgSCM9mNLUa0Nh/ODer/jj8iro7QntF1Vp4iqKuLHbmLiFO+6iS8n20bPwD/bsOP4/DQ1CoTAGXZ3Ouwadov/BxFs8TaoEdxZpob7/2/Uimcpai5T4ZISY5Ods6XcG5NyI+3nHIcAZArkCNrQretVa+9GWAbnqowa4uQI23km+aawP1U1R5aAlhn0cUtKRDz6MmFpspKFxHDTdU1c1cvt+ab351OEsN517N36lr/9DFN/M/vxpgaZCk/aultsZV0TLZAvWeaK5vs0gEprG9ygApHulnYrIjVV496Oj4JjJejy6t9BpjS2NrAB/xP1K2/rPMyl9TXNXJglwZhROXLDxZROlwmgS5UaGrQnYbxrmTeOytJDE7HH42Pgt4P+tMQ5dARGyYKBq1xkbGDFMdMIYgGMADeErMgaj/9DkDG8DSyKSPSlLentiWSgATUd8rNBQqB8=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:38.843 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131389457::seqNum:0; Time (ms) since creation: 10; Size of bundle payload (bytes):932
2022-12-08 21:49:38.844 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131389457::seqNum:0; Time (ms) since creation: 11
2022-12-08 21:49:38.849 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131389457
2022-12-08 21:49:38.873 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33290
2022-12-08 21:49:38.893 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131389479::seqNum:0"
2022-12-08 21:49:38.893 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.4754962860250711
2022-12-08 21:49:38.893 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131389479::seqNum:0; Time (ms) since creation: 38; Size of bundle payload (bytes):312
2022-12-08 21:49:38.893 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131389479::seqNum:0; Time (ms) since creation: 38
2022-12-08 21:49:38.894 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.894 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131389479::seqNum:0; Time (ms) since creation: 39; Size of bundle payload (bytes):312
2022-12-08 21:49:38.931 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33306
2022-12-08 21:49:38.945 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131389531::seqNum:0"
2022-12-08 21:49:38.945 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.08708314337322831
2022-12-08 21:49:38.945 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131389531::seqNum:0; Time (ms) since creation: 38
2022-12-08 21:49:38.945 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:38.948 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131389531::seqNum:0; Time (ms) since creation: 41; Size of bundle payload (bytes):312
2022-12-08 21:49:38.949 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131389531::seqNum:0; Time (ms) since creation: 42; Size of bundle payload (bytes):312
2022-12-08 21:49:39.042 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536179042
2022-12-08 21:49:39.043 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131389667::seqNum:0
2022-12-08 21:49:39.043 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131389667
2022-12-08 21:49:39.043 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131389667
2022-12-08 21:49:39.043 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.9141842517645252
2022-12-08 21:49:39.044 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:39.047 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131389667
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "tW/T/LQd8FG/HFfMTZsB/rw+LU12FgWmd+l3WnUdCH9v13BDZMYYQPej1/t5mKSYePi4EqMG30mRkhAMrgFQfy4yhyxPOB8kyumRxrrF7UtzyDh+v+PMm1C04st4w51CvF0HQg2IdI8qxhYZH5H4jXC7ANPUXidTMS/D1aJv6Kl2S0IuOxh5kr7gok9YkJNPCRd6SzLTzqekevPw35DyQ85eeDT71W7+YHOdsj5R+C4nILoM7Mq0fY8PuqxJiN43yRuG73KFxpeg3DzaSbp8zosxu2JZk2ERyaKtvtt1xe+BJQjfSR4aIz4CO2oY+9+eSSIyuZPh5yKgLz3Y9rAS66SMkDw=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:39.049 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131389667::seqNum:0; Time (ms) since creation: 6; Size of bundle payload (bytes):260
2022-12-08 21:49:39.049 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131389667::seqNum:0; Time (ms) since creation: 6
2022-12-08 21:49:39.050 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131389667
2022-12-08 21:49:39.076 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33322
2022-12-08 21:49:39.083 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131389681::seqNum:0"
2022-12-08 21:49:39.083 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.1798092510660333
2022-12-08 21:49:39.083 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131389681::seqNum:0; Time (ms) since creation: 26
2022-12-08 21:49:39.084 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:39.084 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131389681::seqNum:0; Time (ms) since creation: 27; Size of bundle payload (bytes):312
2022-12-08 21:49:39.085 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131389681::seqNum:0; Time (ms) since creation: 28; Size of bundle payload (bytes):312
2022-12-08 21:49:39.137 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33332
2022-12-08 21:49:39.146 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131389733::seqNum:0"
2022-12-08 21:49:39.147 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.2862941859830064
2022-12-08 21:49:39.147 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131389733::seqNum:0; Time (ms) since creation: 38
2022-12-08 21:49:39.147 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:39.147 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131389733::seqNum:0; Time (ms) since creation: 38; Size of bundle payload (bytes):312
2022-12-08 21:49:39.150 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131389733::seqNum:0; Time (ms) since creation: 41; Size of bundle payload (bytes):312
2022-12-08 21:49:39.208 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536179208
2022-12-08 21:49:39.209 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131389833::seqNum:0
2022-12-08 21:49:39.209 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131389833
2022-12-08 21:49:39.210 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131389833
2022-12-08 21:49:39.210 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.7375218318035233
2022-12-08 21:49:39.210 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:39.213 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131389833
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "SPw5ivuG+BhU0j6w3dCllvNtx2tQh1SAqbwFFy7DrC3DAlCpszUIWplyjww5Rf0GxOCQGeVoqcN+lxRZ5mtBKsoIWuYiVbklGT4NT5V+6/aBNZLHp38mzcYv/t1BAIZPwhexAXTm+4zw8nZo4qaYeyeEsBJTYHRsxkRFRhPl2iDhZWpPGHmVwy76+Rr16dJ0yIpifClO5RD6eyb6UjuKgLOcWDVALwPqWVJ5JQRO",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:39.216 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131389833::seqNum:0; Time (ms) since creation: 7; Size of bundle payload (bytes):174
2022-12-08 21:49:39.217 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131389833::seqNum:0; Time (ms) since creation: 8
2022-12-08 21:49:39.218 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131389833
2022-12-08 21:49:39.248 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33338
2022-12-08 21:49:39.255 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131389853::seqNum:0"
2022-12-08 21:49:39.256 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.25314683483032163
2022-12-08 21:49:39.256 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131389853::seqNum:0; Time (ms) since creation: 27; Size of bundle payload (bytes):312
2022-12-08 21:49:39.256 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131389853::seqNum:0; Time (ms) since creation: 27
2022-12-08 21:49:39.256 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:39.257 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131389853::seqNum:0; Time (ms) since creation: 28; Size of bundle payload (bytes):312
2022-12-08 21:49:39.296 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33342
2022-12-08 21:49:39.308 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131389898::seqNum:0"
2022-12-08 21:49:39.309 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.15109762567004947
2022-12-08 21:49:39.309 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131389898::seqNum:0; Time (ms) since creation: 35; Size of bundle payload (bytes):312
2022-12-08 21:49:39.309 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131389898::seqNum:0; Time (ms) since creation: 35
2022-12-08 21:49:39.309 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:39.309 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131389898::seqNum:0; Time (ms) since creation: 35; Size of bundle payload (bytes):312
2022-12-08 21:49:39.457 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536179457
2022-12-08 21:49:39.458 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131390082::seqNum:0
2022-12-08 21:49:39.458 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131390082
2022-12-08 21:49:39.459 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131390082
2022-12-08 21:49:39.459 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.2540566477459806
2022-12-08 21:49:39.459 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:39.463 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131390082
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "mMANRphvf+Rk0uea6EnXRy0cvdGlXfcF7qEZTemkDfmiPwD2Q4LzS7/3d/vJCcwP8NhNJugW1/lzd7FwHxfLE9OQnC88n2BI0DSWytzvEgWvzJNzNE/P3U8iKq564c5wsirsPV8+sIDbY5Hudbn4GjUcGVB//Pr72Ikoq/p9X3NnQgcdW1uKNWb4tk3efZRELHFRjdOBd7vm/sl70euEdEJ8CC40nKqGvGMrUtJ4NailMkhvzb1V8lZoTnfloXg5NSyWxsLHQ1ZtibpVBKXPNZVNrbkfaS7Gi38rQlJRMUxVJiPDMIzr/8xDklaWJnFTUo2CyQ/Fc+7oHJtL5ne0z1wfSUV9lciNcPgYwqKFCuoahOvY9ZnatFeU9uykwhc1Kp3e0f7z/POzPFLXtbgTXIwD4vjBhXSBxSFxEUJAXCk/d6oU2tKGHzaKgx5O/9fWLCXRQnKaVRmjZQPNqmONL0Pn1qmNfhFTWwMLuGSMcv7j4lhCoEzf92fxmZF91s2dfymGb2a7cGHKR5rQ3QDGK34/vJ3zsQpUCeTYwYsbPB9hrSoMCGzA0u1YR10YtvhSKv+7kakPTHSGlgY5XAHZb/zVhIjth2Lmc44lXmTYPzD+79/rFLnp7GFY7/+q5NnChUpoFt5hVbHRmlhKhlEDiHLCcMwaPuBFHTzUzuXCECfX1qpffD6cTbyf0/Q4g6Qe4HGkn7PprU7E87YsrhxUSPDb3gK7OrQssFI2LaTRcYsKPb9rb5CfF2O9lPRcqBAgclC7NWGCTyRsMXqc7f2QMZMuK8jurnghi19iyXrUboIjUVPfjNbQuXTGYeGmUOp4hDXIj2XYkNXSNduJRhq2+G1Bf94p",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:39.465 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131390082::seqNum:0; Time (ms) since creation: 7; Size of bundle payload (bytes):645
2022-12-08 21:49:39.465 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131390082::seqNum:0; Time (ms) since creation: 7
2022-12-08 21:49:39.465 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131390082
2022-12-08 21:49:39.503 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33352
2022-12-08 21:49:39.532 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131390103::seqNum:0"
2022-12-08 21:49:39.532 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.4706080483719628
2022-12-08 21:49:39.533 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131390103::seqNum:0; Time (ms) since creation: 53; Size of bundle payload (bytes):312
2022-12-08 21:49:39.533 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131390103::seqNum:0; Time (ms) since creation: 54
2022-12-08 21:49:39.533 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:39.533 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131390103::seqNum:0; Time (ms) since creation: 54; Size of bundle payload (bytes):312
2022-12-08 21:49:39.551 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33356
2022-12-08 21:49:39.555 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131390142::seqNum:0"
2022-12-08 21:49:39.556 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131390142::seqNum:0; Time (ms) since creation: 38
2022-12-08 21:49:39.556 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:39.556 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131390142::seqNum:0; Time (ms) since creation: 38; Size of bundle payload (bytes):312
2022-12-08 21:49:39.558 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131390142::seqNum:0; Time (ms) since creation: 40; Size of bundle payload (bytes):312
2022-12-08 21:49:39.697 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536179697
2022-12-08 21:49:39.698 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131390322::seqNum:0
2022-12-08 21:49:39.698 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131390322
2022-12-08 21:49:39.698 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131390322
2022-12-08 21:49:39.698 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.3864067840256712
2022-12-08 21:49:39.698 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:39.702 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131390322
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "IHXAwVBNdSU0INgE33sZm37quklFiM0yAeDRYbI4H/z60LZkI5EMTGqsTb2qkvByoDGAamlS8t+QMdVHc0W3P+Z5k5DrBhdSQWevqyQgkQ3+0D0pjQbJaWrY+EOkqQivau7cik4bdEvKbbT7SSdJJNRFLcmIorrZ6K8R3MHpObMfnC4adf4oz0a0gFM1BAfWuVkUSPUb8OjXKftDqtFbBDIuOKONEJwOrThtIavs9TAS2VoHsxSIvvYooAAlfX125ivoT0heIespBbTGkQD6NZyZsPRlnx5me6tUgFfwCJUQ59v8WS3qfJgCqslx6m085tD9VfIT2VCPRcqTT0Dqtpm6blL7mKkODZtwJfoPxEbUupdZBvRnh81rKRJ8S0NEAJkCAGs+gOlOLEngflLtih6Q8/CQ37DPx40Z+jECrnzW6luJavkAbVhK9ExxX6crzsxRSUKZEu2BAMIQKD9PKz+9Kne8sGDX19HGvvCQFOLGxhtrFBt1TvS4DVf8Lzxcd0AbBasyI9Kvyl4DN14/ITiU7SXCupfxjNa7rK1N9FRLlgeZhCHXT3YaIqgqXGsPLEKGdEleT/+r/QagIOXxx5zwJGgY8LKH9wbx7M3NVYv9WhjxbsCmqCSC7bedL5N54P9FsD3uJOSwiLZIzMTHVdy8tMc3xRIZwGFkfk/73VKhsYzUS2WoiVRtwI/00RtiTMDJ0W/eLOa8Dv8ux+PfLPs+JX6gxHGzS0oJH7hFmUKkrvAqJoClQUkK1jV6Gq11Iovkmhzew4MtP97qrQDHn5CIg5wvpWBWC0+2mT6/Py7a0eO0pjIADkuIivIO1BeskBy1sqFj7qWbi+MD0ci5pv2lc6elTsRQJuHyZThyko94bSUrV5HR7wUt91ZSfcvM+T8AJ4c2po72tkq9L+9W2e9oLLJweEYoSzmmrcZ6QNZPHMHqPeNh9CQrTR4Y0SMf8O1Ukc+be0jg+XcplE/1jxXqTYi9zonD0OWjrb2wPBVLI8IGnItuTi12tzAKo7efdclyOn+QDElMuGXWDGpUkyUeeXrByd6WD74pmtbt0pUs2t3dAYohv54P1ySY3FwtdNjIq22+CNhXBFPMjcJLwQwagGdDo27aAjfWDBc8XkGEd0o+lbwaaEmJVAUnpgtYepO7+UwXeSpmap3X4vC3nXTiM8NuFpYmHVWt14F4f6rw27iGo1Czpe24xP94CG0tuqj2ePRBDlSCwmdn2mxqyHzifZ/W1Q==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:39.713 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131390322::seqNum:0; Time (ms) since creation: 15; Size of bundle payload (bytes):934
2022-12-08 21:49:39.714 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131390322::seqNum:0; Time (ms) since creation: 16
2022-12-08 21:49:39.714 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131390322
2022-12-08 21:49:39.756 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33362
2022-12-08 21:49:39.771 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131390353::seqNum:0"
2022-12-08 21:49:39.771 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.21178888047961564
2022-12-08 21:49:39.771 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131390353::seqNum:0; Time (ms) since creation: 42; Size of bundle payload (bytes):312
2022-12-08 21:49:39.771 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131390353::seqNum:0; Time (ms) since creation: 42
2022-12-08 21:49:39.772 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:39.772 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131390353::seqNum:0; Time (ms) since creation: 43; Size of bundle payload (bytes):312
2022-12-08 21:49:39.800 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33366
2022-12-08 21:49:39.804 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131390385::seqNum:0"
2022-12-08 21:49:39.805 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.9597303842270515
2022-12-08 21:49:39.805 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131390385::seqNum:0; Time (ms) since creation: 44
2022-12-08 21:49:39.805 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:39.805 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131390385::seqNum:0; Time (ms) since creation: 44; Size of bundle payload (bytes):312
2022-12-08 21:49:39.806 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131390385::seqNum:0; Time (ms) since creation: 45; Size of bundle payload (bytes):312
2022-12-08 21:49:39.860 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536179860
2022-12-08 21:49:39.861 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131390485::seqNum:0
2022-12-08 21:49:39.861 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131390485
2022-12-08 21:49:39.862 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131390485
2022-12-08 21:49:39.862 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.6941053849255434
2022-12-08 21:49:39.862 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:39.865 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131390485
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "Zw343xbZfRpWku8yQA6gqPZFkbjwAsOhsWKTr7Rl2DPJ43o473d+Pn7sE/bwrKsuGWX34zeTNX2EzvbndD8PomEhdnQVUL2cvhs7ylexmn3XOBnoMt0hxYPAI4CfN8PrOngsxAWvlxXmlWCs0sH07840QN+JxQ==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:39.868 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131390485::seqNum:0; Time (ms) since creation: 7; Size of bundle payload (bytes):118
2022-12-08 21:49:39.868 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131390485::seqNum:0; Time (ms) since creation: 7
2022-12-08 21:49:39.869 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131390485
2022-12-08 21:49:39.897 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33380
2022-12-08 21:49:39.902 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131390501::seqNum:0"
2022-12-08 21:49:39.902 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.8734128893554375
2022-12-08 21:49:39.902 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131390501::seqNum:0; Time (ms) since creation: 25; Size of bundle payload (bytes):312
2022-12-08 21:49:39.904 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131390501::seqNum:0; Time (ms) since creation: 27
2022-12-08 21:49:39.905 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:39.905 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131390501::seqNum:0; Time (ms) since creation: 28; Size of bundle payload (bytes):312
2022-12-08 21:49:39.939 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33384
2022-12-08 21:49:39.952 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131390527::seqNum:0"
2022-12-08 21:49:39.953 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131390527::seqNum:0; Time (ms) since creation: 50; Size of bundle payload (bytes):312
2022-12-08 21:49:39.953 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131390527::seqNum:0; Time (ms) since creation: 50
2022-12-08 21:49:39.953 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:39.953 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131390527::seqNum:0; Time (ms) since creation: 50; Size of bundle payload (bytes):312
2022-12-08 21:49:40.096 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536180096
2022-12-08 21:49:40.097 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131390720::seqNum:0
2022-12-08 21:49:40.097 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131390720
2022-12-08 21:49:40.097 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131390720
2022-12-08 21:49:40.097 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.5561336561788719
2022-12-08 21:49:40.097 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:40.100 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131390720
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "MBmYIqpuD7LTlnKjH3dIGBZjuALviW3M6EzjAbKxJFt5tIKOIrBavF+pPmLuFPJhaZE4Wqwn9F6y8/8yuw2gyLuClMlKQ1gTkTEtmeV2X81DUx8hNSneNDxJMWTarsqcQWx//4No4OEVdYUkscVSGhsF/a7MANGFcNxFOG4HQ3hMGu17EMCT/61lNpaEZvz/nF9gAdgahtWJFXp6mooeFZGhkvma4ml1sI+QWZKHbE0lSmoWYX7aYZaMUvvGgJc3uPweL62JSq+GWN/BlLz5bEd9GVaX/QG6+q/6pBzs8OHeVo5MOUhzWy2Ne6JIqy4uS/V3G0z2v4nuumF1DH1CFhQmrCIR06uOt0AxiO7HENqqNBSqdaLHXf77j9nIlh5V3RXOXW/ZiuLK+hINzCHSfZJWcD+s+KXoiGvuGsljRDS0wRGUbm1N6R42FAmsP0AIaPFQe7Ec1xlAknosSPrP3IQ/p+aP/AKBAy8Fk1kMgk5ByRUN5V/pKq+/ICvGkJr8LnrynDXYD0bYAcreJtP2TGdShm/N0c+gr5C2UYTCvLoHXI1vKU5Io5UZ5wZmTEgB2gO8f5VgxiHxxU/2DORki1fJdDAWUSbEQu68uPW5AQvMeRTniolp6ndq52OmZ3NT2mrqHA6x2/t+Ew2MrRM+2CRoVaOfmeOeGkqXCORRjyhDSNVsA+RCCvmWoofyQz+E/Fxsc+l9US8FuNd9F76kHrUyq6JPXvAF+a439id0ALYjU3SSIyTBiDilgWXWcv//SP8sti175pjZuPI3N2kVvZwU6/Uraw==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:40.103 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131390720::seqNum:0; Time (ms) since creation: 7; Size of bundle payload (bytes):598
2022-12-08 21:49:40.104 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131390720::seqNum:0; Time (ms) since creation: 8
2022-12-08 21:49:40.104 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131390720
2022-12-08 21:49:40.131 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33396
2022-12-08 21:49:40.136 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131390739::seqNum:0"
2022-12-08 21:49:40.136 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.5769103954830974
2022-12-08 21:49:40.137 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131390739::seqNum:0; Time (ms) since creation: 22; Size of bundle payload (bytes):312
2022-12-08 21:49:40.137 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131390739::seqNum:0; Time (ms) since creation: 22
2022-12-08 21:49:40.137 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:40.137 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131390739::seqNum:0; Time (ms) since creation: 22; Size of bundle payload (bytes):312
2022-12-08 21:49:40.177 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33412
2022-12-08 21:49:40.182 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131390780::seqNum:0"
2022-12-08 21:49:40.183 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131390780::seqNum:0; Time (ms) since creation: 27
2022-12-08 21:49:40.183 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:40.183 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131390780::seqNum:0; Time (ms) since creation: 27; Size of bundle payload (bytes):312
2022-12-08 21:49:40.185 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131390780::seqNum:0; Time (ms) since creation: 29; Size of bundle payload (bytes):312
2022-12-08 21:49:40.259 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536180259
2022-12-08 21:49:40.260 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131390884::seqNum:0
2022-12-08 21:49:40.261 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131390884
2022-12-08 21:49:40.261 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131390884
2022-12-08 21:49:40.261 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.9070625061305936
2022-12-08 21:49:40.261 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:40.264 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131390884
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "PfWtq4aHFK4N8GjjHW1AN4OjCymXjcVBrRNGgPu1a08E79SQAQKyNxtarGqRLCls0Z92dGeq7zfH/ccbj8zOgGmLFkHfEZP31wmK9Jf5X3RfVdP1xeYX6HHF1AgwQ4ZmOhatPszhkEQ6D+0kAPS9rpsMFz9Viga8GW2nUTrgXyClvJBEA2wNtz/U7yVUJ9WamCGnVo6REbZrbbfQ/dzYyL/VpPzYWF4/atk=",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:40.267 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131390884::seqNum:0; Time (ms) since creation: 7; Size of bundle payload (bytes):170
2022-12-08 21:49:40.268 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131390884::seqNum:0; Time (ms) since creation: 8
2022-12-08 21:49:40.268 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131390884
2022-12-08 21:49:40.319 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33420
2022-12-08 21:49:40.326 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131390902::seqNum:0"
2022-12-08 21:49:40.326 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.8774083348022425
2022-12-08 21:49:40.326 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131390902::seqNum:0; Time (ms) since creation: 48
2022-12-08 21:49:40.326 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:40.327 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131390902::seqNum:0; Time (ms) since creation: 49; Size of bundle payload (bytes):312
2022-12-08 21:49:40.331 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131390902::seqNum:0; Time (ms) since creation: 53; Size of bundle payload (bytes):312
2022-12-08 21:49:40.343 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33434
2022-12-08 21:49:40.349 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131390914::seqNum:0"
2022-12-08 21:49:40.350 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131390914::seqNum:0; Time (ms) since creation: 60
2022-12-08 21:49:40.350 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:40.350 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131390914::seqNum:0; Time (ms) since creation: 60; Size of bundle payload (bytes):312
2022-12-08 21:49:40.356 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131390914::seqNum:0; Time (ms) since creation: 66; Size of bundle payload (bytes):312
2022-12-08 21:49:40.481 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536180481
2022-12-08 21:49:40.482 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131391106::seqNum:0
2022-12-08 21:49:40.482 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131391106
2022-12-08 21:49:40.483 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131391106
2022-12-08 21:49:40.483 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.7891517998584221
2022-12-08 21:49:40.483 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:40.494 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131391106
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "3bmPGT/QtewAuxWWLi1FEj6CJMtcYM9RUKqTJgA8KV4k1dEut2i9tMUwaTsByc4BxvEmmyB+AsTj3BB3zGp49L311liT9x+1zV4DFt41NIoN93in8ZlwVedbBvRoMcHbZTqhrPPKVX29WCLDZsWWc6YJYZ9bfxCqI93yIvB1rMSh7g5Xa1h+0pw2ktzPf7FqJVYRSpukhrH/fJQ/UipJxjjfgYyFN4r1V72bfWLi2Vuj2h+PJE3kcQtvSRbUcsrts75sET3suXU+lw==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:40.498 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131391106::seqNum:0; Time (ms) since creation: 16; Size of bundle payload (bytes):202
2022-12-08 21:49:40.530 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131391106::seqNum:0; Time (ms) since creation: 48
2022-12-08 21:49:40.530 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131391106
2022-12-08 21:49:40.544 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33440
2022-12-08 21:49:40.552 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131391128::seqNum:0"
2022-12-08 21:49:40.552 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.5720205650546127
2022-12-08 21:49:40.552 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131391128::seqNum:0; Time (ms) since creation: 48
2022-12-08 21:49:40.552 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:40.552 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131391128::seqNum:0; Time (ms) since creation: 48; Size of bundle payload (bytes):312
2022-12-08 21:49:40.554 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131391128::seqNum:0; Time (ms) since creation: 50; Size of bundle payload (bytes):312
2022-12-08 21:49:40.572 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33444
2022-12-08 21:49:40.577 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131391154::seqNum:0"
2022-12-08 21:49:40.577 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131391154::seqNum:0; Time (ms) since creation: 47
2022-12-08 21:49:40.577 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:40.578 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131391154::seqNum:0; Time (ms) since creation: 48; Size of bundle payload (bytes):312
2022-12-08 21:49:40.579 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131391154::seqNum:0; Time (ms) since creation: 49; Size of bundle payload (bytes):312
2022-12-08 21:49:40.716 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536180716
2022-12-08 21:49:40.717 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131391341::seqNum:0
2022-12-08 21:49:40.717 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131391341
2022-12-08 21:49:40.717 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131391341
2022-12-08 21:49:40.717 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.7374713609953684
2022-12-08 21:49:40.717 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:40.720 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {
"flags" : 458752,
"destNode" : {
"id" : "b"
},
"srcNode" : {
"id" : "a"
},
"reportToNode" : {
"id" : "a"
},
"creationTimestamp" : {
"creationTime" : {
"timeInMS" : 131391341
},
"seqNum" : 0
},
"lifetime" : 50000,
"fragmentOffset" : -1,
"crc" : -1,
"adulen" : -1
},
"payload" : {
"payload" : "eD6mOowcdPDkmXisg4E714UckFqUhe2rlrbGt9+2XOydnmM152MvmVxcNHe98/DExKv79qkcralSAuZgew==",
"blockType" : 1,
"blockNum" : 1,
"flags" : 0,
"crc" : -1
}
}
2022-12-08 21:49:40.722 INFO DTCP.DTCP send [NetStats] Bundle Sent: from:a::to:b::creationTime:131391341::seqNum:0; Time (ms) since creation: 5; Size of bundle payload (bytes):61
2022-12-08 21:49:40.722 INFO BPv7.BPADispatcher run [NetStats] BPA Sent: from:a::to:b::creationTime:131391341::seqNum:0; Time (ms) since creation: 5
2022-12-08 21:49:40.722 INFO BPv7.BPADispatcher run Sent bundle to DTCP and updated the dispatch status for bundle timestamp: 131391341
2022-12-08 21:49:40.768 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33452
2022-12-08 21:49:40.788 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:forwarding::to:a::creationTime:131391354::seqNum:0"
2022-12-08 21:49:40.789 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.6280963621595216
2022-12-08 21:49:40.789 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:forwarding::to:a::creationTime:131391354::seqNum:0; Time (ms) since creation: 59
2022-12-08 21:49:40.789 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:40.789 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:forwarding::to:a::creationTime:131391354::seqNum:0; Time (ms) since creation: 59; Size of bundle payload (bytes):312
2022-12-08 21:49:40.791 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:forwarding::to:a::creationTime:131391354::seqNum:0; Time (ms) since creation: 61; Size of bundle payload (bytes):312
2022-12-08 21:49:40.801 INFO DTCP.DTCPServer run Connected to client! /10.0.0.2:33462
2022-12-08 21:49:40.806 INFO BPv7.containers.Bundle deserializeNetworkEncoding Deserialized bundle ID = "from:b::to:a::creationTime:131391382::seqNum:0"
2022-12-08 21:49:40.806 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 43980465373184, Value: 0.25458012828444
2022-12-08 21:49:40.806 INFO BPv7.BPAReceiver run [NetStats] BPA Received: from:b::to:a::creationTime:131391382::seqNum:0; Time (ms) since creation: 48
2022-12-08 21:49:40.806 INFO BPv7.BPAReceiver run Added status report to the queue for AA
2022-12-08 21:49:40.806 INFO BPv7.BPAReceiver run [NetStats] Bundle Arrived: from:b::to:a::creationTime:131391382::seqNum:0; Time (ms) since creation: 48; Size of bundle payload (bytes):312
2022-12-08 21:49:40.808 INFO DTCP.ClientHandler run [NetStats] Bundle Received: from:b::to:a::creationTime:131391382::seqNum:0; Time (ms) since creation: 50; Size of bundle payload (bytes):312
2022-12-08 21:49:40.921 WARNING SendStrings.App sendThoseStrings (warn to make it show up in console) Sending new message to B! CurrTime = 1670536180921
2022-12-08 21:49:40.921 INFO BPv7.BPAUtils createBundle creating bundle for the payload, bundle = from:a::to:b::creationTime:131391545::seqNum:0
2022-12-08 21:49:40.921 INFO BPv7.BPA sendWithACK saving the bundle with ack flag, timestamp: 131391545
2022-12-08 21:49:40.921 INFO BPv7.BPAUtils saveToQueue save the bundle in the sending queue: 131391545
2022-12-08 21:49:40.922 INFO DTCP.DTCPUtils getConnectionValue New Connection Check For Connection Id: 21990232817664, Value: 0.297762287649154
2022-12-08 21:49:40.922 INFO BPv7.BPADispatcher run DTCP reported: Can reach destination nodeID
2022-12-08 21:49:40.925 INFO BPv7.containers.Bundle getNetworkEncoding Wrote this bundle as JSON:
{
"primary" : {