-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhost2.log
7993 lines (7993 loc) · 472 KB
/
host2.log
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
INFO:root:generated packet 0, at time 1.992676
INFO:root:packet 0, at time 1.992676, sent successfully
INFO:root:generated packet 1, at time 3.989258
INFO:root:packet 1, at time 3.989258, sent successfully
INFO:root:generated packet 2, at time 5.982910
INFO:root:packet 2, at time 5.982910, sent successfully
INFO:root:generated packet 3, at time 7.979004
INFO:root:packet 3, at time 7.979004, sent successfully
INFO:root:generated packet 4, at time 8.975098
INFO:root:packet 4, at time 8.975098, sent successfully
INFO:root:generated packet 5, at time 9.972900
INFO:root:packet 5, at time 9.972900, sent successfully
INFO:root:generated packet 6, at time 11.968018
INFO:root:packet 6, at time 11.968018, sent successfully
INFO:root:received ack for data packet - 0 at time 36.906982
INFO:root:generated packet 7, at time 44.880127
INFO:root:received ack for data packet - 1 at time 45.876709
INFO:root:packet 7, at time 44.880127, sent successfully
INFO:root:received ack for data packet - 2 at time 46.873779
INFO:root:generated packet 0, at time 46.873779
INFO:root:packet 0, at time 46.873779, sent successfully
INFO:root:generated packet 1, at time 48.869385
INFO:root:packet 1, at time 48.869385, sent successfully
INFO:root:received ack for data packet - 3 at time 67.817871
INFO:root:received ack for data packet - 4 at time 74.798340
INFO:root:received ack for data packet - 5 at time 74.798340
INFO:root:generated packet 2, at time 80.788330
INFO:root:packet 2, at time 80.788330, sent successfully
INFO:root:generated packet 3, at time 81.784424
INFO:root:packet 3, at time 81.784424, sent successfully
INFO:root:generated packet 4, at time 87.764893
INFO:root:packet 4, at time 87.764893, sent successfully
INFO:root:received ack for data packet - 6 at time 118.682373
INFO:root:generated packet 5, at time 125.663574
INFO:root:received ack for data packet - 7 at time 143.614990
INFO:root:generated packet 6, at time 149.597656
INFO:root:packet 6, at time 149.597656, sent successfully
INFO:root:received ack for data packet - 0 at time 176.526855
INFO:root:received ack for data packet - 1 at time 182.513428
INFO:root:generated packet 7, at time 182.513428
INFO:root:received ack for data packet - 2 at time 182.513428
INFO:root:packet 7, at time 182.513428, sent successfully
INFO:root:generated packet 0, at time 183.511963
INFO:root:received ack for data packet - 3 at time 184.509766
INFO:root:packet 0, at time 183.511963, sent successfully
INFO:root:generated packet 1, at time 185.506348
INFO:root:packet 1, at time 185.506348, sent successfully
INFO:root:generated packet 2, at time 186.503906
INFO:root:packet 2, at time 186.503906, sent successfully
INFO:root:received ack for data packet - 4 at time 198.470459
INFO:root:generated packet 3, at time 204.455078
INFO:root:Timeout occured at time 428.853516, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 5 at time 434.835938
INFO:root:resent the packet number 5 at time 434.835938
INFO:root:Trying to resend the packet number 6 at time 435.833740
INFO:root:resent the packet number 6 at time 435.833740
INFO:root:Trying to resend the packet number 7 at time 437.827393
INFO:root:resent the packet number 7 at time 437.827393
INFO:root:Trying to resend the packet number 0 at time 438.830078
INFO:root:resent the packet number 0 at time 438.830078
INFO:root:Trying to resend the packet number 1 at time 440.820068
INFO:root:resent the packet number 1 at time 440.820068
INFO:root:Trying to resend the packet number 2 at time 442.814453
INFO:root:resent the packet number 2 at time 442.814453
INFO:root:Trying to resend the packet number 3 at time 442.814453
INFO:root:resent the packet number 3 at time 442.814453
INFO:root:received ack for data packet - 5 at time 475.241699
INFO:root:generated packet 4, at time 482.222168
INFO:root:packet 4, at time 482.222168, sent successfully
INFO:root:received ack for data packet - 6 at time 483.220947
INFO:root:generated packet 5, at time 489.204102
INFO:root:packet 5, at time 489.204102, sent successfully
INFO:root:received data packet - 0 at time 502.169678
INFO:root:sending ack for data packet - 0 at time 502.169678
INFO:root:Success - ack for data packet - 0 at time 502.169678
INFO:root:received data packet - 1 at time 526.105713
INFO:root:sending ack for data packet - 1 at time 526.105713
INFO:root:Success - ack for data packet - 1 at time 526.105713
INFO:root:received ack for data packet - 7 at time 527.104980
INFO:root:received data packet - 2 at time 527.104980
INFO:root:generated packet 6, at time 528.104736
INFO:root:sending ack for data packet - 2 at time 527.104980
INFO:root:packet 6, at time 528.104736, sent successfully
INFO:root:Success - ack for data packet - 2 at time 527.104980
INFO:root:received ack for data packet - 0 at time 547.050049
INFO:root:received data packet - 3 at time 553.033203
INFO:root:generated packet 7, at time 553.033203
INFO:root:sending ack for data packet - 3 at time 553.033203
INFO:root:packet 7, at time 553.033203, sent successfully
INFO:root:Success - ack for data packet - 3 at time 553.033203
INFO:root:received data packet - 4 at time 572.980469
INFO:root:sending ack for data packet - 4 at time 572.980469
INFO:root:Success - ack for data packet - 4 at time 572.980469
INFO:root:received ack for data packet - 1 at time 590.932373
INFO:root:received data packet - 5 at time 590.932373
INFO:root:sending ack for data packet - 5 at time 590.932373
INFO:root:Success - ack for data packet - 5 at time 590.932373
INFO:root:received data packet - 6 at time 591.929688
INFO:root:generated packet 0, at time 591.929688
INFO:root:packet 0, at time 591.929688, sent successfully
INFO:root:sending ack for data packet - 6 at time 591.929688
INFO:root:Success - ack for data packet - 6 at time 591.929688
INFO:root:received ack for data packet - 2 at time 617.859375
INFO:root:generated packet 1, at time 624.841309
INFO:root:received ack for data packet - 3 at time 624.841309
INFO:root:packet 1, at time 624.841309, sent successfully
INFO:root:received ack for data packet - 4 at time 626.838623
INFO:root:received ack for data packet - 5 at time 626.838623
INFO:root:received ack for data packet - 6 at time 627.835205
INFO:root:generated packet 2, at time 627.835205
INFO:root:received data packet - 7 at time 628.832031
INFO:root:packet 2, at time 627.835205, sent successfully
INFO:root:sending ack for data packet - 7 at time 628.832031
INFO:root:generated packet 3, at time 629.828125
INFO:root:Success - ack for data packet - 7 at time 628.832031
INFO:root:packet 3, at time 629.828125, sent successfully
INFO:root:received ack for data packet - 7 at time 630.826416
INFO:root:received ack for data packet - 0 at time 630.826416
INFO:root:generated packet 4, at time 631.822998
INFO:root:packet 4, at time 631.822998, sent successfully
INFO:root:generated packet 5, at time 632.820312
INFO:root:packet 5, at time 632.820312, sent successfully
INFO:root:generated packet 6, at time 637.808105
INFO:root:packet 6, at time 637.808105, sent successfully
INFO:root:generated packet 7, at time 638.806152
INFO:root:packet 7, at time 638.806152, sent successfully
INFO:root:received ack for data packet - 1 at time 664.736084
INFO:root:received ack for data packet - 2 at time 664.736084
INFO:root:received ack for data packet - 3 at time 664.736084
INFO:root:received ack for data packet - 4 at time 665.733398
INFO:root:generated packet 0, at time 665.733398
INFO:root:packet 0, at time 665.733398, sent successfully
INFO:root:generated packet 1, at time 666.730469
INFO:root:packet 1, at time 666.730469, sent successfully
INFO:root:generated packet 2, at time 668.724609
INFO:root:packet 2, at time 668.724609, sent successfully
INFO:root:generated packet 3, at time 670.719482
INFO:root:packet 3, at time 670.719482, sent successfully
INFO:root:received ack for data packet - 5 at time 683.684814
INFO:root:received ack for data packet - 6 at time 683.684814
INFO:root:received ack for data packet - 7 at time 683.684814
INFO:root:received ack for data packet - 0 at time 684.683838
INFO:root:generated packet 4, at time 687.675049
INFO:root:packet 4, at time 687.675049, sent successfully
INFO:root:received ack for data packet - 1 at time 688.670410
INFO:root:generated packet 5, at time 689.670410
INFO:root:packet 5, at time 689.670410, sent successfully
INFO:root:received ack for data packet - 2 at time 692.659424
INFO:root:received ack for data packet - 3 at time 693.657715
INFO:root:generated packet 6, at time 697.648193
INFO:root:packet 6, at time 697.648193, sent successfully
INFO:root:received ack for data packet - 4 at time 698.645264
INFO:root:generated packet 7, at time 699.642578
INFO:root:packet 7, at time 699.642578, sent successfully
INFO:root:generated packet 0, at time 700.638672
INFO:root:packet 0, at time 700.638672, sent successfully
INFO:root:generated packet 1, at time 702.634521
INFO:root:packet 1, at time 702.634521, sent successfully
INFO:root:generated packet 2, at time 704.628662
INFO:root:packet 2, at time 704.628662, sent successfully
INFO:root:generated packet 3, at time 706.623535
INFO:root:packet 3, at time 706.623535, sent successfully
INFO:root:received ack for data packet - 5 at time 702.634521
INFO:root:received ack for data packet - 6 at time 717.595215
INFO:root:received ack for data packet - 7 at time 717.595215
INFO:root:generated packet 4, at time 718.592285
INFO:root:packet 4, at time 718.592285, sent successfully
INFO:root:received ack for data packet - 0 at time 719.589600
INFO:root:generated packet 5, at time 721.582520
INFO:root:received ack for data packet - 1 at time 721.582520
INFO:root:received ack for data packet - 2 at time 723.579346
INFO:root:packet 5, at time 721.582520, sent successfully
INFO:root:received ack for data packet - 3 at time 725.572754
INFO:root:generated packet 6, at time 727.566895
INFO:root:packet 6, at time 727.566895, sent successfully
INFO:root:generated packet 7, at time 732.555176
INFO:root:packet 7, at time 732.555176, sent successfully
INFO:root:generated packet 0, at time 734.548828
INFO:root:packet 0, at time 734.548828, sent successfully
INFO:root:generated packet 1, at time 735.545166
INFO:root:packet 1, at time 735.545166, sent successfully
INFO:root:generated packet 2, at time 736.543945
INFO:root:packet 2, at time 736.543945, sent successfully
INFO:root:received ack for data packet - 4 at time 746.523193
INFO:root:generated packet 3, at time 748.510254
INFO:root:packet 3, at time 748.510254, sent successfully
INFO:root:received ack for data packet - 5 at time 772.447510
INFO:root:received ack for data packet - 6 at time 778.431885
INFO:root:generated packet 4, at time 779.429443
INFO:root:packet 4, at time 779.429443, sent successfully
INFO:root:generated packet 5, at time 783.418945
INFO:root:received ack for data packet - 7 at time 796.382324
INFO:root:generated packet 6, at time 810.350098
INFO:root:packet 6, at time 810.350098, sent successfully
INFO:root:received ack for data packet - 0 at time 818.325684
INFO:root:generated packet 7, at time 825.306885
INFO:root:received ack for data packet - 1 at time 832.291016
INFO:root:generated packet 0, at time 834.281982
INFO:root:received ack for data packet - 2 at time 838.270508
INFO:root:packet 0, at time 834.281982, sent successfully
INFO:root:generated packet 1, at time 839.270020
INFO:root:packet 1, at time 839.270020, sent successfully
INFO:root:received ack for data packet - 3 at time 853.232422
INFO:root:generated packet 2, at time 860.213623
INFO:root:received ack for data packet - 4 at time 861.222412
INFO:root:packet 2, at time 860.213623, sent successfully
INFO:root:generated packet 3, at time 863.206055
INFO:root:packet 3, at time 863.206055, sent successfully
INFO:root:received data packet - 0 at time 891.646973
INFO:root:sending ack for data packet - 0 at time 891.646973
INFO:root:received data packet - 1 at time 909.125977
INFO:root:sending ack for data packet - 1 at time 909.125977
INFO:root:Success - ack for data packet - 1 at time 909.125977
INFO:root:Timeout occured at time 1084.684326, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 5 at time 1090.668701
INFO:root:resent the packet number 5 at time 1090.668701
INFO:root:Trying to resend the packet number 6 at time 1091.666748
INFO:root:resent the packet number 6 at time 1091.666748
INFO:root:Trying to resend the packet number 7 at time 1092.662842
INFO:root:resent the packet number 7 at time 1092.662842
INFO:root:Trying to resend the packet number 0 at time 1095.656006
INFO:root:resent the packet number 0 at time 1095.656006
INFO:root:Trying to resend the packet number 1 at time 1096.653564
INFO:root:resent the packet number 1 at time 1096.653564
INFO:root:Trying to resend the packet number 2 at time 1097.649414
INFO:root:resent the packet number 2 at time 1097.649414
INFO:root:Trying to resend the packet number 3 at time 1098.647949
INFO:root:resent the packet number 3 at time 1098.647949
INFO:root:received ack for data packet - 5 at time 1099.644043
INFO:root:generated packet 4, at time 1107.623047
INFO:root:packet 4, at time 1107.623047, sent successfully
INFO:root:received ack for data packet - 6 at time 1116.599854
INFO:root:received ack for data packet - 7 at time 1122.583984
INFO:root:generated packet 5, at time 1122.583984
INFO:root:received ack for data packet - 0 at time 1123.580566
INFO:root:packet 5, at time 1122.583984, sent successfully
INFO:root:generated packet 6, at time 1124.578125
INFO:root:packet 6, at time 1124.578125, sent successfully
INFO:root:generated packet 7, at time 1129.569580
INFO:root:packet 7, at time 1129.569580, sent successfully
INFO:root:received ack for data packet - 1 at time 1138.543213
INFO:root:received ack for data packet - 2 at time 1138.543213
INFO:root:received ack for data packet - 3 at time 1139.536133
INFO:root:generated packet 0, at time 1140.534912
INFO:root:packet 0, at time 1140.534912, sent successfully
INFO:root:received ack for data packet - 4 at time 1141.532471
INFO:root:generated packet 1, at time 1142.528809
INFO:root:packet 1, at time 1142.528809, sent successfully
INFO:root:generated packet 2, at time 1146.519287
INFO:root:packet 2, at time 1146.519287, sent successfully
INFO:root:generated packet 3, at time 1147.517334
INFO:root:packet 3, at time 1147.517334, sent successfully
INFO:root:received ack for data packet - 5 at time 1148.514160
INFO:root:generated packet 4, at time 1162.476318
INFO:root:packet 4, at time 1162.476318, sent successfully
INFO:root:received ack for data packet - 6 at time 1183.421143
INFO:root:generated packet 5, at time 1185.424316
INFO:root:packet 5, at time 1185.424316, sent successfully
INFO:root:received ack for data packet - 7 at time 1186.413086
INFO:root:generated packet 6, at time 1193.397461
INFO:root:packet 6, at time 1193.397461, sent successfully
INFO:root:received ack for data packet - 0 at time 1209.350586
INFO:root:generated packet 7, at time 1215.334717
INFO:root:packet 7, at time 1215.334717, sent successfully
INFO:root:received ack for data packet - 1 at time 1222.313965
INFO:root:generated packet 0, at time 1228.304199
INFO:root:packet 0, at time 1228.304199, sent successfully
INFO:root:received ack for data packet - 2 at time 1229.298584
INFO:root:generated packet 1, at time 1235.281738
INFO:root:packet 1, at time 1235.281738, sent successfully
INFO:root:received ack for data packet - 3 at time 1236.278809
INFO:root:received ack for data packet - 4 at time 1241.282715
INFO:root:received ack for data packet - 5 at time 1242.267578
INFO:root:received ack for data packet - 7 at time 1242.267578
INFO:root:generated packet 2, at time 1248.247803
INFO:root:packet 2, at time 1248.247803, sent successfully
INFO:root:generated packet 3, at time 1249.244629
INFO:root:packet 3, at time 1249.244629, sent successfully
INFO:root:received ack for data packet - 0 at time 1250.244141
INFO:root:generated packet 4, at time 1253.234131
INFO:root:received ack for data packet - 1 at time 1253.234131
INFO:root:packet 4, at time 1253.234131, sent successfully
INFO:root:generated packet 5, at time 1255.229248
INFO:root:packet 5, at time 1255.229248, sent successfully
INFO:root:generated packet 6, at time 1256.226318
INFO:root:packet 6, at time 1256.226318, sent successfully
INFO:root:generated packet 7, at time 1257.222412
INFO:root:packet 7, at time 1257.222412, sent successfully
INFO:root:generated packet 0, at time 1258.219238
INFO:root:packet 0, at time 1258.219238, sent successfully
INFO:root:received ack for data packet - 2 at time 1268.192383
INFO:root:received ack for data packet - 3 at time 1268.192383
INFO:root:received ack for data packet - 4 at time 1269.189941
INFO:root:generated packet 1, at time 1269.189941
INFO:root:packet 1, at time 1269.189941, sent successfully
INFO:root:generated packet 2, at time 1271.185059
INFO:root:generated packet 3, at time 1272.182129
INFO:root:packet 3, at time 1272.182129, sent successfully
INFO:root:received ack for data packet - 5 at time 1272.182129
INFO:root:received ack for data packet - 6 at time 1279.163086
INFO:root:received ack for data packet - 7 at time 1279.163086
INFO:root:generated packet 4, at time 1280.160156
INFO:root:packet 4, at time 1280.160156, sent successfully
INFO:root:generated packet 5, at time 1281.158447
INFO:root:packet 5, at time 1281.158447, sent successfully
INFO:root:generated packet 6, at time 1283.156006
INFO:root:packet 6, at time 1283.156006, sent successfully
INFO:root:received ack for data packet - 1 at time 1294.636719
INFO:root:generated packet 7, at time 1296.631836
INFO:root:packet 7, at time 1296.631836, sent successfully
INFO:root:generated packet 0, at time 1298.624756
INFO:root:packet 0, at time 1298.624756, sent successfully
INFO:root:received data packet - 2 at time 1520.547607
INFO:root:sending ack for data packet - 2 at time 1520.547607
INFO:root:Success - ack for data packet - 2 at time 1520.547607
INFO:root:Timeout occured at time 1574.401123, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 2 at time 1579.929199
INFO:root:resent the packet number 2 at time 1579.929199
INFO:root:Trying to resend the packet number 3 at time 1580.925293
INFO:root:resent the packet number 3 at time 1580.925293
INFO:root:Trying to resend the packet number 4 at time 1584.916504
INFO:root:Trying to resend the packet number 5 at time 1584.916504
INFO:root:resent the packet number 5 at time 1584.916504
INFO:root:Trying to resend the packet number 6 at time 1586.910645
INFO:root:resent the packet number 6 at time 1586.910645
INFO:root:received ack for data packet - 2 at time 1587.908691
INFO:root:Trying to resend the packet number 7 at time 1587.908691
INFO:root:resent the packet number 7 at time 1587.908691
INFO:root:Trying to resend the packet number 0 at time 1589.902100
INFO:root:resent the packet number 0 at time 1589.902100
INFO:root:generated packet 1, at time 1590.899170
INFO:root:packet 1, at time 1590.899170, sent successfully
INFO:root:received ack for data packet - 3 at time 1610.854736
INFO:root:generated packet 2, at time 1617.829346
INFO:root:packet 2, at time 1617.829346, sent successfully
INFO:root:received data packet - 3 at time 1836.276123
INFO:root:sending ack for data packet - 3 at time 1836.276123
INFO:root:Success - ack for data packet - 3 at time 1836.276123
INFO:root:received data packet - 4 at time 1870.723633
INFO:root:sending ack for data packet - 4 at time 1870.723633
INFO:root:Success - ack for data packet - 4 at time 1870.723633
INFO:root:received data packet - 5 at time 1880.699707
INFO:root:sending ack for data packet - 5 at time 1880.699707
INFO:root:Success - ack for data packet - 5 at time 1880.699707
INFO:root:Timeout occured at time 1886.680664, will need to resend all the packets in window
INFO:root:received data packet - 6 at time 1892.669189
INFO:root:sending ack for data packet - 6 at time 1892.669189
INFO:root:Success - ack for data packet - 6 at time 1892.669189
INFO:root:received data packet - 7 at time 1895.657715
INFO:root:sending ack for data packet - 7 at time 1895.657715
INFO:root:Trying to resend the packet number 4 at time 1896.659912
INFO:root:Success - ack for data packet - 7 at time 1895.657715
INFO:root:resent the packet number 4 at time 1896.659912
INFO:root:received data packet - 0 at time 1898.649902
INFO:root:Trying to resend the packet number 5 at time 1898.649902
INFO:root:sending ack for data packet - 0 at time 1898.649902
INFO:root:resent the packet number 5 at time 1898.649902
INFO:root:Success - ack for data packet - 0 at time 1898.649902
INFO:root:Trying to resend the packet number 6 at time 1899.647461
INFO:root:received data packet - 1 at time 1899.647461
INFO:root:resent the packet number 6 at time 1899.647461
INFO:root:sending ack for data packet - 1 at time 1899.647461
INFO:root:Trying to resend the packet number 7 at time 1900.644775
INFO:root:Success - ack for data packet - 1 at time 1899.647461
INFO:root:resent the packet number 7 at time 1900.644775
INFO:root:received data packet - 2 at time 1901.641113
INFO:root:sending ack for data packet - 2 at time 1901.641113
INFO:root:Trying to resend the packet number 0 at time 1901.641113
INFO:root:Success - ack for data packet - 2 at time 1901.641113
INFO:root:resent the packet number 0 at time 1901.641113
INFO:root:received data packet - 3 at time 1903.640625
INFO:root:Trying to resend the packet number 1 at time 1903.640625
INFO:root:sending ack for data packet - 3 at time 1903.640625
INFO:root:resent the packet number 1 at time 1903.640625
INFO:root:Trying to resend the packet number 2 at time 1904.633057
INFO:root:resent the packet number 2 at time 1904.633057
INFO:root:Success - ack for data packet - 3 at time 1903.640625
INFO:root:received data packet - 4 at time 1928.569824
INFO:root:sending ack for data packet - 4 at time 1928.569824
INFO:root:Success - ack for data packet - 4 at time 1928.569824
INFO:root:received data packet - 5 at time 1950.031982
INFO:root:sending ack for data packet - 5 at time 1950.031982
INFO:root:Success - ack for data packet - 5 at time 1950.031982
INFO:root:received ack for data packet - 4 at time 1968.495605
INFO:root:received ack for data packet - 5 at time 1968.495605
INFO:root:received ack for data packet - 6 at time 1968.495605
INFO:root:received ack for data packet - 7 at time 1969.493408
INFO:root:received ack for data packet - 0 at time 1969.493408
INFO:root:received ack for data packet - 1 at time 1969.493408
INFO:root:received ack for data packet - 2 at time 1970.491699
INFO:root:generated packet 3, at time 1979.467041
INFO:root:packet 3, at time 1979.467041, sent successfully
INFO:root:generated packet 4, at time 2012.385498
INFO:root:generated packet 5, at time 2013.377441
INFO:root:packet 5, at time 2013.377441, sent successfully
INFO:root:generated packet 6, at time 2015.372314
INFO:root:packet 6, at time 2015.372314, sent successfully
INFO:root:generated packet 7, at time 2017.365234
INFO:root:generated packet 0, at time 2019.360107
INFO:root:packet 0, at time 2019.360107, sent successfully
INFO:root:generated packet 1, at time 2020.356689
INFO:root:packet 1, at time 2020.356689, sent successfully
INFO:root:received ack for data packet - 3 at time 2030.334961
INFO:root:generated packet 2, at time 2052.272217
INFO:root:packet 2, at time 2052.272217, sent successfully
INFO:root:received data packet - 6 at time 2207.438232
INFO:root:sending ack for data packet - 6 at time 2207.438232
INFO:root:Success - ack for data packet - 6 at time 2207.438232
INFO:root:received data packet - 7 at time 2228.387451
INFO:root:sending ack for data packet - 7 at time 2228.387451
INFO:root:Success - ack for data packet - 7 at time 2228.387451
INFO:root:received data packet - 0 at time 2230.384521
INFO:root:sending ack for data packet - 0 at time 2230.384521
INFO:root:Success - ack for data packet - 0 at time 2230.384521
INFO:root:Timeout occured at time 2312.672119, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 4 at time 2318.654297
INFO:root:resent the packet number 4 at time 2318.654297
INFO:root:Trying to resend the packet number 5 at time 2319.652100
INFO:root:resent the packet number 5 at time 2319.652100
INFO:root:Trying to resend the packet number 6 at time 2319.652100
INFO:root:resent the packet number 6 at time 2319.652100
INFO:root:Trying to resend the packet number 7 at time 2320.648438
INFO:root:resent the packet number 7 at time 2320.648438
INFO:root:Trying to resend the packet number 0 at time 2321.645996
INFO:root:resent the packet number 0 at time 2321.645996
INFO:root:Trying to resend the packet number 1 at time 2322.643555
INFO:root:resent the packet number 1 at time 2322.643555
INFO:root:Trying to resend the packet number 2 at time 2322.643555
INFO:root:resent the packet number 2 at time 2322.643555
INFO:root:received ack for data packet - 4 at time 2330.623047
INFO:root:generated packet 3, at time 2331.619629
INFO:root:packet 3, at time 2331.619629, sent successfully
INFO:root:received ack for data packet - 5 at time 2348.577393
INFO:root:received ack for data packet - 6 at time 2348.577393
INFO:root:received ack for data packet - 7 at time 2348.577393
INFO:root:received ack for data packet - 0 at time 2349.572266
INFO:root:generated packet 4, at time 2350.568848
INFO:root:packet 4, at time 2350.568848, sent successfully
INFO:root:received ack for data packet - 1 at time 2351.566895
INFO:root:generated packet 5, at time 2351.566895
INFO:root:packet 5, at time 2351.566895, sent successfully
INFO:root:generated packet 6, at time 2353.562012
INFO:root:packet 6, at time 2353.562012, sent successfully
INFO:root:generated packet 7, at time 2356.553955
INFO:root:packet 7, at time 2356.553955, sent successfully
INFO:root:received ack for data packet - 2 at time 2358.548340
INFO:root:generated packet 0, at time 2360.546143
INFO:root:packet 0, at time 2360.546143, sent successfully
INFO:root:generated packet 1, at time 2364.531982
INFO:root:packet 1, at time 2364.531982, sent successfully
INFO:root:received ack for data packet - 3 at time 2378.492920
INFO:root:generated packet 2, at time 2391.459473
INFO:root:packet 2, at time 2391.459473, sent successfully
INFO:root:received ack for data packet - 4 at time 2421.379639
INFO:root:generated packet 3, at time 2422.377197
INFO:root:packet 3, at time 2422.377197, sent successfully
INFO:root:received ack for data packet - 5 at time 2423.375000
INFO:root:received ack for data packet - 7 at time 2430.355225
INFO:root:generated packet 4, at time 2431.352783
INFO:root:packet 4, at time 2431.352783, sent successfully
INFO:root:generated packet 5, at time 2433.347412
INFO:root:packet 5, at time 2433.347412, sent successfully
INFO:root:generated packet 6, at time 2435.342041
INFO:root:packet 6, at time 2435.342041, sent successfully
INFO:root:received ack for data packet - 0 at time 2444.322510
INFO:root:generated packet 7, at time 2451.299316
INFO:root:received ack for data packet - 1 at time 2469.251709
INFO:root:generated packet 0, at time 2470.257812
INFO:root:packet 0, at time 2470.257812, sent successfully
INFO:root:received ack for data packet - 2 at time 2478.227539
INFO:root:received ack for data packet - 3 at time 2486.205566
INFO:root:generated packet 1, at time 2487.203613
INFO:root:packet 1, at time 2487.203613, sent successfully
INFO:root:generated packet 2, at time 2491.192139
INFO:root:packet 2, at time 2491.192139, sent successfully
INFO:root:received ack for data packet - 4 at time 2497.174805
INFO:root:received ack for data packet - 5 at time 2503.159424
INFO:root:generated packet 3, at time 2507.148926
INFO:root:packet 3, at time 2507.148926, sent successfully
INFO:root:generated packet 4, at time 2509.145020
INFO:root:packet 4, at time 2509.145020, sent successfully
INFO:root:received data packet - 1 at time 2528.093750
INFO:root:sending ack for data packet - 1 at time 2528.093750
INFO:root:Success - ack for data packet - 1 at time 2528.093750
INFO:root:received ack for data packet - 6 at time 2547.042236
INFO:root:generated packet 5, at time 2553.027344
INFO:root:received data packet - 2 at time 2554.023682
INFO:root:packet 5, at time 2553.027344, sent successfully
INFO:root:sending ack for data packet - 2 at time 2554.023682
INFO:root:Success - ack for data packet - 2 at time 2554.023682
INFO:root:received data packet - 3 at time 2575.482910
INFO:root:sending ack for data packet - 3 at time 2575.482910
INFO:root:Success - ack for data packet - 3 at time 2575.482910
INFO:root:Timeout occured at time 2753.519531, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 7 at time 2759.503174
INFO:root:resent the packet number 7 at time 2759.503174
INFO:root:Trying to resend the packet number 0 at time 2760.501465
INFO:root:resent the packet number 0 at time 2760.501465
INFO:root:Trying to resend the packet number 1 at time 2761.499023
INFO:root:resent the packet number 1 at time 2761.499023
INFO:root:Trying to resend the packet number 2 at time 2762.498291
INFO:root:resent the packet number 2 at time 2762.498291
INFO:root:Trying to resend the packet number 3 at time 2762.498291
INFO:root:resent the packet number 3 at time 2762.498291
INFO:root:Trying to resend the packet number 4 at time 2764.492920
INFO:root:resent the packet number 4 at time 2764.492920
INFO:root:received ack for data packet - 7 at time 2767.481689
INFO:root:Trying to resend the packet number 5 at time 2767.481689
INFO:root:resent the packet number 5 at time 2767.481689
INFO:root:generated packet 6, at time 2770.474121
INFO:root:packet 6, at time 2770.474121, sent successfully
INFO:root:received ack for data packet - 0 at time 2780.447021
INFO:root:generated packet 7, at time 2784.437988
INFO:root:packet 7, at time 2784.437988, sent successfully
INFO:root:received ack for data packet - 1 at time 2808.373291
INFO:root:received ack for data packet - 2 at time 2808.373291
INFO:root:received ack for data packet - 3 at time 2809.369873
INFO:root:generated packet 0, at time 2810.380371
INFO:root:packet 0, at time 2810.380371, sent successfully
INFO:root:generated packet 1, at time 2812.364014
INFO:root:packet 1, at time 2812.364014, sent successfully
INFO:root:generated packet 2, at time 2816.352295
INFO:root:packet 2, at time 2816.352295, sent successfully
INFO:root:received ack for data packet - 4 at time 2816.352295
INFO:root:generated packet 3, at time 2823.332764
INFO:root:packet 3, at time 2823.332764, sent successfully
INFO:root:received data packet - 4 at time 2841.799316
INFO:root:sending ack for data packet - 4 at time 2841.799316
INFO:root:Success - ack for data packet - 4 at time 2841.799316
INFO:root:received ack for data packet - 5 at time 2847.783936
INFO:root:generated packet 4, at time 2854.766113
INFO:root:packet 4, at time 2854.766113, sent successfully
INFO:root:received ack for data packet - 6 at time 2855.762207
INFO:root:generated packet 5, at time 2868.728760
INFO:root:received ack for data packet - 7 at time 2868.728760
INFO:root:packet 5, at time 2868.728760, sent successfully
INFO:root:received ack for data packet - 0 at time 2868.728760
INFO:root:generated packet 6, at time 2869.724609
INFO:root:packet 6, at time 2869.724609, sent successfully
INFO:root:generated packet 7, at time 2871.719238
INFO:root:packet 7, at time 2871.719238, sent successfully
INFO:root:received ack for data packet - 1 at time 2879.697998
INFO:root:generated packet 0, at time 2887.676025
INFO:root:packet 0, at time 2887.676025, sent successfully
INFO:root:received ack for data packet - 2 at time 2909.618164
INFO:root:received ack for data packet - 3 at time 2915.603271
INFO:root:generated packet 1, at time 2916.601318
INFO:root:received ack for data packet - 5 at time 2916.601318
INFO:root:packet 1, at time 2916.601318, sent successfully
INFO:root:received ack for data packet - 6 at time 2918.594971
INFO:root:generated packet 2, at time 2918.594971
INFO:root:packet 2, at time 2918.594971, sent successfully
INFO:root:generated packet 3, at time 2919.592773
INFO:root:packet 3, at time 2919.592773, sent successfully
INFO:root:generated packet 4, at time 2922.585693
INFO:root:packet 4, at time 2922.585693, sent successfully
INFO:root:generated packet 5, at time 2923.582031
INFO:root:packet 5, at time 2923.582031, sent successfully
INFO:root:received ack for data packet - 7 at time 2958.037354
INFO:root:generated packet 6, at time 2961.039062
INFO:root:received ack for data packet - 0 at time 2984.487061
INFO:root:generated packet 7, at time 2990.471191
INFO:root:packet 7, at time 2990.471191, sent successfully
INFO:root:received ack for data packet - 1 at time 3007.426758
INFO:root:generated packet 0, at time 3016.401611
INFO:root:received ack for data packet - 2 at time 3034.353516
INFO:root:generated packet 1, at time 3041.335449
INFO:root:packet 1, at time 3041.335449, sent successfully
INFO:root:received ack for data packet - 3 at time 3061.794189
INFO:root:received ack for data packet - 4 at time 3061.794189
INFO:root:received ack for data packet - 5 at time 3062.791992
INFO:root:generated packet 2, at time 3065.783691
INFO:root:generated packet 3, at time 3067.778809
INFO:root:packet 3, at time 3067.778809, sent successfully
INFO:root:generated packet 4, at time 3070.770264
INFO:root:packet 4, at time 3070.770264, sent successfully
INFO:root:received data packet - 5 at time 3147.565674
INFO:root:sending ack for data packet - 5 at time 3147.565674
INFO:root:Success - ack for data packet - 5 at time 3147.565674
INFO:root:received data packet - 6 at time 3166.515137
INFO:root:sending ack for data packet - 6 at time 3166.515137
INFO:root:Success - ack for data packet - 6 at time 3166.515137
INFO:root:received data packet - 7 at time 3167.513184
INFO:root:sending ack for data packet - 7 at time 3167.513184
INFO:root:Success - ack for data packet - 7 at time 3167.513184
INFO:root:received data packet - 0 at time 3168.509033
INFO:root:sending ack for data packet - 0 at time 3168.509033
INFO:root:received data packet - 1 at time 3168.509033
INFO:root:sending ack for data packet - 1 at time 3168.509033
INFO:root:Success - ack for data packet - 1 at time 3168.509033
INFO:root:received data packet - 2 at time 3176.486816
INFO:root:sending ack for data packet - 2 at time 3176.486816
INFO:root:Success - ack for data packet - 2 at time 3176.486816
INFO:root:received data packet - 3 at time 3197.433105
INFO:root:sending ack for data packet - 3 at time 3197.433105
INFO:root:Success - ack for data packet - 3 at time 3197.433105
INFO:root:received data packet - 4 at time 3207.405029
INFO:root:sending ack for data packet - 4 at time 3207.405029
INFO:root:Success - ack for data packet - 4 at time 3207.405029
INFO:root:received data packet - 5 at time 3207.405029
INFO:root:sending ack for data packet - 5 at time 3207.405029
INFO:root:Success - ack for data packet - 5 at time 3207.405029
INFO:root:received data packet - 6 at time 3208.403076
INFO:root:sending ack for data packet - 6 at time 3208.403076
INFO:root:Success - ack for data packet - 6 at time 3208.403076
INFO:root:Timeout occured at time 3261.780762, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 6 at time 3290.697754
INFO:root:resent the packet number 6 at time 3290.697754
INFO:root:Trying to resend the packet number 7 at time 3291.694824
INFO:root:resent the packet number 7 at time 3291.694824
INFO:root:Trying to resend the packet number 0 at time 3294.687012
INFO:root:resent the packet number 0 at time 3294.687012
INFO:root:Trying to resend the packet number 1 at time 3295.686768
INFO:root:resent the packet number 1 at time 3295.686768
INFO:root:Trying to resend the packet number 2 at time 3296.680420
INFO:root:resent the packet number 2 at time 3296.680420
INFO:root:Trying to resend the packet number 3 at time 3297.677979
INFO:root:resent the packet number 3 at time 3297.677979
INFO:root:Trying to resend the packet number 4 at time 3298.682617
INFO:root:resent the packet number 4 at time 3298.682617
INFO:root:received ack for data packet - 6 at time 3334.580566
INFO:root:received ack for data packet - 7 at time 3334.580566
INFO:root:received ack for data packet - 0 at time 3335.577881
INFO:root:received ack for data packet - 1 at time 3335.577881
INFO:root:received ack for data packet - 2 at time 3336.576172
INFO:root:received ack for data packet - 3 at time 3336.576172
INFO:root:received ack for data packet - 4 at time 3336.576172
INFO:root:generated packet 5, at time 3337.572754
INFO:root:packet 5, at time 3337.572754, sent successfully
INFO:root:generated packet 6, at time 3338.569336
INFO:root:packet 6, at time 3338.569336, sent successfully
INFO:root:generated packet 7, at time 3340.562744
INFO:root:packet 7, at time 3340.562744, sent successfully
INFO:root:generated packet 0, at time 3342.557617
INFO:root:generated packet 1, at time 3344.553955
INFO:root:packet 1, at time 3344.553955, sent successfully
INFO:root:generated packet 2, at time 3346.548828
INFO:root:packet 2, at time 3346.548828, sent successfully
INFO:root:generated packet 3, at time 3347.545654
INFO:root:packet 3, at time 3347.545654, sent successfully
INFO:root:received ack for data packet - 5 at time 3362.505859
INFO:root:received ack for data packet - 6 at time 3362.505859
INFO:root:generated packet 4, at time 3365.496582
INFO:root:packet 4, at time 3365.496582, sent successfully
INFO:root:generated packet 5, at time 3367.028564
INFO:root:received ack for data packet - 7 at time 3401.427979
INFO:root:generated packet 6, at time 3411.915039
INFO:root:packet 6, at time 3411.915039, sent successfully
INFO:root:received data packet - 7 at time 3517.173340
INFO:root:sending ack for data packet - 7 at time 3517.173340
INFO:root:Success - ack for data packet - 7 at time 3517.173340
INFO:root:received data packet - 0 at time 3531.138184
INFO:root:sending ack for data packet - 0 at time 3531.138184
INFO:root:Success - ack for data packet - 0 at time 3531.138184
INFO:root:received data packet - 1 at time 3532.140869
INFO:root:sending ack for data packet - 1 at time 3532.140869
INFO:root:Success - ack for data packet - 1 at time 3532.140869
INFO:root:received data packet - 2 at time 3542.106934
INFO:root:sending ack for data packet - 2 at time 3542.106934
INFO:root:Success - ack for data packet - 2 at time 3542.106934
INFO:root:received data packet - 3 at time 3544.101318
INFO:root:sending ack for data packet - 3 at time 3544.101318
INFO:root:Success - ack for data packet - 3 at time 3544.101318
INFO:root:Timeout occured at time 3650.333008, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 0 at time 3651.332275
INFO:root:resent the packet number 0 at time 3651.332275
INFO:root:Trying to resend the packet number 1 at time 3652.331787
INFO:root:Trying to resend the packet number 2 at time 3653.332031
INFO:root:resent the packet number 2 at time 3653.332031
INFO:root:Trying to resend the packet number 3 at time 3654.329590
INFO:root:resent the packet number 3 at time 3654.329590
INFO:root:Trying to resend the packet number 4 at time 3655.321289
INFO:root:resent the packet number 4 at time 3655.321289
INFO:root:Trying to resend the packet number 5 at time 3656.317871
INFO:root:resent the packet number 5 at time 3656.317871
INFO:root:Trying to resend the packet number 6 at time 3657.316895
INFO:root:resent the packet number 6 at time 3657.316895
INFO:root:Timeout occured at time 3953.556641, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 0 at time 3954.553711
INFO:root:resent the packet number 0 at time 3954.553711
INFO:root:Trying to resend the packet number 1 at time 3955.549805
INFO:root:resent the packet number 1 at time 3955.549805
INFO:root:Trying to resend the packet number 2 at time 3957.545410
INFO:root:resent the packet number 2 at time 3957.545410
INFO:root:Trying to resend the packet number 3 at time 3961.550049
INFO:root:resent the packet number 3 at time 3961.550049
INFO:root:Trying to resend the packet number 4 at time 3962.539062
INFO:root:Trying to resend the packet number 5 at time 3963.530029
INFO:root:resent the packet number 5 at time 3963.530029
INFO:root:Trying to resend the packet number 6 at time 3964.527100
INFO:root:resent the packet number 6 at time 3964.527100
INFO:root:received data packet - 4 at time 4086.202881
INFO:root:sending ack for data packet - 4 at time 4086.202881
INFO:root:Success - ack for data packet - 4 at time 4086.202881
INFO:root:received ack for data packet - 0 at time 4088.196533
INFO:root:received ack for data packet - 1 at time 4089.193115
INFO:root:received ack for data packet - 2 at time 4092.187256
INFO:root:received ack for data packet - 3 at time 4095.177979
INFO:root:generated packet 7, at time 4098.169922
INFO:root:packet 7, at time 4098.169922, sent successfully
INFO:root:generated packet 0, at time 4099.166992
INFO:root:packet 0, at time 4099.166992, sent successfully
INFO:root:generated packet 1, at time 4101.163086
INFO:root:packet 1, at time 4101.163086, sent successfully
INFO:root:generated packet 2, at time 4102.160889
INFO:root:packet 2, at time 4102.160889, sent successfully
INFO:root:Timeout occured at time 4262.728760, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 4 at time 4264.722656
INFO:root:resent the packet number 4 at time 4264.722656
INFO:root:Trying to resend the packet number 5 at time 4265.720215
INFO:root:resent the packet number 5 at time 4265.720215
INFO:root:Trying to resend the packet number 6 at time 4266.718262
INFO:root:resent the packet number 6 at time 4266.718262
INFO:root:Trying to resend the packet number 7 at time 4266.718262
INFO:root:resent the packet number 7 at time 4266.718262
INFO:root:Trying to resend the packet number 0 at time 4266.718262
INFO:root:resent the packet number 0 at time 4266.718262
INFO:root:Trying to resend the packet number 1 at time 4267.715332
INFO:root:resent the packet number 1 at time 4267.715332
INFO:root:Trying to resend the packet number 2 at time 4267.715332
INFO:root:resent the packet number 2 at time 4267.715332
INFO:root:received ack for data packet - 4 at time 4279.681885
INFO:root:received ack for data packet - 5 at time 4279.681885
INFO:root:received ack for data packet - 6 at time 4280.680420
INFO:root:received ack for data packet - 7 at time 4280.680420
INFO:root:received ack for data packet - 0 at time 4280.680420
INFO:root:received ack for data packet - 1 at time 4280.680420
INFO:root:received ack for data packet - 2 at time 4281.677490
INFO:root:generated packet 3, at time 4333.540039
INFO:root:packet 3, at time 4333.540039, sent successfully
INFO:root:generated packet 4, at time 4335.535645
INFO:root:packet 4, at time 4335.535645, sent successfully
INFO:root:generated packet 5, at time 4336.532959
INFO:root:packet 5, at time 4336.532959, sent successfully
INFO:root:generated packet 6, at time 4338.526611
INFO:root:packet 6, at time 4338.526611, sent successfully
INFO:root:received ack for data packet - 3 at time 4338.526611
INFO:root:generated packet 7, at time 4339.522949
INFO:root:received ack for data packet - 4 at time 4340.521240
INFO:root:packet 7, at time 4339.522949, sent successfully
INFO:root:received ack for data packet - 5 at time 4340.521240
INFO:root:generated packet 0, at time 4344.509277
INFO:root:packet 0, at time 4344.509277, sent successfully
INFO:root:generated packet 1, at time 4347.503174
INFO:root:packet 1, at time 4347.503174, sent successfully
INFO:root:generated packet 2, at time 4348.500000
INFO:root:generated packet 3, at time 4349.497803
INFO:root:packet 3, at time 4349.497803, sent successfully
INFO:root:generated packet 4, at time 4350.494873
INFO:root:packet 4, at time 4350.494873, sent successfully
INFO:root:received ack for data packet - 6 at time 4350.494873
INFO:root:generated packet 5, at time 4356.478516
INFO:root:received ack for data packet - 7 at time 4357.476562
INFO:root:received ack for data packet - 0 at time 4358.473389
INFO:root:received ack for data packet - 1 at time 4358.473389
INFO:root:packet 5, at time 4356.478516, sent successfully
INFO:root:received data packet - 5 at time 4420.821289
INFO:root:generated packet 6, at time 4421.819092
INFO:root:sending ack for data packet - 5 at time 4420.821289
INFO:root:packet 6, at time 4421.819092, sent successfully
INFO:root:Success - ack for data packet - 5 at time 4420.821289
INFO:root:generated packet 7, at time 4426.328613
INFO:root:packet 7, at time 4426.328613, sent successfully
INFO:root:generated packet 0, at time 4429.322510
INFO:root:packet 0, at time 4429.322510, sent successfully
INFO:root:Timeout occured at time 4648.796387, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 2 at time 4649.793701
INFO:root:resent the packet number 2 at time 4649.793701
INFO:root:Trying to resend the packet number 3 at time 4650.790771
INFO:root:resent the packet number 3 at time 4650.790771
INFO:root:Trying to resend the packet number 4 at time 4651.789795
INFO:root:resent the packet number 4 at time 4651.789795
INFO:root:Trying to resend the packet number 5 at time 4654.779297
INFO:root:Trying to resend the packet number 6 at time 4655.778320
INFO:root:resent the packet number 6 at time 4655.778320
INFO:root:Trying to resend the packet number 7 at time 4656.776123
INFO:root:resent the packet number 7 at time 4656.776123
INFO:root:Trying to resend the packet number 0 at time 4657.774902
INFO:root:received ack for data packet - 2 at time 4679.781006
INFO:root:generated packet 1, at time 4680.775146
INFO:root:packet 1, at time 4680.775146, sent successfully
INFO:root:received ack for data packet - 3 at time 4782.561523
INFO:root:received ack for data packet - 4 at time 4783.558594
INFO:root:generated packet 2, at time 4784.555176
INFO:root:packet 2, at time 4784.555176, sent successfully
INFO:root:generated packet 3, at time 4786.551270
INFO:root:packet 3, at time 4786.551270, sent successfully
INFO:root:Timeout occured at time 4956.097412, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 5 at time 4958.094482
INFO:root:resent the packet number 5 at time 4958.094482
INFO:root:Trying to resend the packet number 6 at time 4958.094482
INFO:root:resent the packet number 6 at time 4958.094482
INFO:root:Trying to resend the packet number 7 at time 4959.088867
INFO:root:resent the packet number 7 at time 4959.088867
INFO:root:Trying to resend the packet number 0 at time 4960.085205
INFO:root:resent the packet number 0 at time 4960.085205
INFO:root:Trying to resend the packet number 1 at time 4960.085205
INFO:root:Trying to resend the packet number 2 at time 4961.084473
INFO:root:resent the packet number 2 at time 4961.084473
INFO:root:Trying to resend the packet number 3 at time 4962.082520
INFO:root:resent the packet number 3 at time 4962.082520
INFO:root:received ack for data packet - 5 at time 4987.014404
INFO:root:generated packet 4, at time 4993.995605
INFO:root:packet 4, at time 4993.995605, sent successfully
INFO:root:received ack for data packet - 6 at time 5007.956543
INFO:root:generated packet 5, at time 5008.956543
INFO:root:packet 5, at time 5008.956543, sent successfully
INFO:root:received ack for data packet - 7 at time 5009.953613
INFO:root:generated packet 6, at time 5010.950684
INFO:root:packet 6, at time 5010.950684, sent successfully
INFO:root:received ack for data packet - 0 at time 5041.913086
INFO:root:generated packet 7, at time 5049.893555
INFO:root:packet 7, at time 5049.893555, sent successfully
INFO:root:Timeout occured at time 5268.306885, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 1 at time 5274.290527
INFO:root:resent the packet number 1 at time 5274.290527
INFO:root:Trying to resend the packet number 2 at time 5278.280518
INFO:root:resent the packet number 2 at time 5278.280518
INFO:root:Trying to resend the packet number 3 at time 5281.271973
INFO:root:resent the packet number 3 at time 5281.271973
INFO:root:Trying to resend the packet number 4 at time 5283.267334
INFO:root:resent the packet number 4 at time 5283.267334
INFO:root:Trying to resend the packet number 5 at time 5285.261719
INFO:root:resent the packet number 5 at time 5285.261719
INFO:root:Trying to resend the packet number 6 at time 5286.259277
INFO:root:resent the packet number 6 at time 5286.259277
INFO:root:Trying to resend the packet number 7 at time 5286.259277
INFO:root:resent the packet number 7 at time 5286.259277
INFO:root:received ack for data packet - 1 at time 5300.222900
INFO:root:received ack for data packet - 2 at time 5306.208008
INFO:root:generated packet 0, at time 5307.204590
INFO:root:received ack for data packet - 3 at time 5307.204590
INFO:root:packet 0, at time 5307.204590, sent successfully
INFO:root:received ack for data packet - 4 at time 5308.202148
INFO:root:generated packet 1, at time 5308.202148
INFO:root:received ack for data packet - 5 at time 5308.202148
INFO:root:packet 1, at time 5308.202148, sent successfully
INFO:root:received ack for data packet - 6 at time 5309.198975
INFO:root:generated packet 2, at time 5309.198975
INFO:root:packet 2, at time 5309.198975, sent successfully
INFO:root:generated packet 3, at time 5311.195312
INFO:root:packet 3, at time 5311.195312, sent successfully
INFO:root:generated packet 4, at time 5313.195068
INFO:root:packet 4, at time 5313.195068, sent successfully
INFO:root:generated packet 5, at time 5314.187744
INFO:root:packet 5, at time 5314.187744, sent successfully
INFO:root:received ack for data packet - 7 at time 5327.151123
INFO:root:generated packet 6, at time 5334.132812
INFO:root:packet 6, at time 5334.132812, sent successfully
INFO:root:received ack for data packet - 0 at time 5365.049561
INFO:root:generated packet 7, at time 5371.032959
INFO:root:packet 7, at time 5371.032959, sent successfully
INFO:root:received ack for data packet - 1 at time 5384.999023
INFO:root:generated packet 0, at time 5390.979248
INFO:root:received ack for data packet - 2 at time 5420.898682
INFO:root:generated packet 1, at time 5426.887939
INFO:root:received ack for data packet - 3 at time 5432.873291
INFO:root:generated packet 2, at time 5438.857910
INFO:root:received ack for data packet - 4 at time 5444.839844
INFO:root:generated packet 3, at time 5450.822510
INFO:root:packet 3, at time 5450.822510, sent successfully
INFO:root:received ack for data packet - 5 at time 5450.822510
INFO:root:generated packet 4, at time 5457.803223
INFO:root:packet 4, at time 5457.803223, sent successfully
INFO:root:received ack for data packet - 6 at time 5458.801270
INFO:root:generated packet 5, at time 5464.782227
INFO:root:packet 5, at time 5464.782227, sent successfully
INFO:root:received ack for data packet - 7 at time 5465.780518
INFO:root:generated packet 6, at time 5472.760010
INFO:root:packet 6, at time 5472.760010, sent successfully
INFO:root:Timeout occured at time 5697.160889, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 0 at time 5698.160156
INFO:root:resent the packet number 0 at time 5698.160156
INFO:root:Trying to resend the packet number 1 at time 5701.155518
INFO:root:resent the packet number 1 at time 5701.155518
INFO:root:Trying to resend the packet number 2 at time 5702.153809
INFO:root:resent the packet number 2 at time 5702.153809
INFO:root:Trying to resend the packet number 3 at time 5703.145264
INFO:root:resent the packet number 3 at time 5703.145264
INFO:root:Trying to resend the packet number 4 at time 5704.142822
INFO:root:resent the packet number 4 at time 5704.142822
INFO:root:Trying to resend the packet number 5 at time 5707.136230
INFO:root:resent the packet number 5 at time 5707.136230
INFO:root:Trying to resend the packet number 6 at time 5708.131592
INFO:root:resent the packet number 6 at time 5708.131592
INFO:root:received ack for data packet - 0 at time 5746.036133
INFO:root:received ack for data packet - 1 at time 5748.027588
INFO:root:received ack for data packet - 2 at time 5748.027588
INFO:root:generated packet 7, at time 5749.022461
INFO:root:received ack for data packet - 3 at time 5749.022461
INFO:root:packet 7, at time 5749.022461, sent successfully
INFO:root:received ack for data packet - 4 at time 5750.020508
INFO:root:generated packet 0, at time 5751.018555
INFO:root:received ack for data packet - 5 at time 5752.016113
INFO:root:packet 0, at time 5751.018555, sent successfully
INFO:root:generated packet 1, at time 5753.011963
INFO:root:received ack for data packet - 6 at time 5753.011963
INFO:root:packet 1, at time 5753.011963, sent successfully
INFO:root:received ack for data packet - 7 at time 5754.009521
INFO:root:received ack for data packet - 0 at time 5755.007080
INFO:root:generated packet 2, at time 5755.007080
INFO:root:received ack for data packet - 1 at time 5756.004883
INFO:root:packet 2, at time 5755.007080, sent successfully
INFO:root:generated packet 3, at time 5758.996582
INFO:root:packet 3, at time 5758.996582, sent successfully
INFO:root:generated packet 4, at time 5760.994873
INFO:root:packet 4, at time 5760.994873, sent successfully
INFO:root:generated packet 5, at time 5763.984619
INFO:root:packet 5, at time 5763.984619, sent successfully
INFO:root:generated packet 6, at time 5764.981445
INFO:root:packet 6, at time 5764.981445, sent successfully
INFO:root:generated packet 7, at time 5765.979736
INFO:root:packet 7, at time 5765.979736, sent successfully
INFO:root:generated packet 0, at time 5767.972900
INFO:root:packet 0, at time 5767.972900, sent successfully
INFO:root:received ack for data packet - 3 at time 5787.918945
INFO:root:received ack for data packet - 4 at time 5797.898193
INFO:root:generated packet 1, at time 5802.879639
INFO:root:packet 1, at time 5802.879639, sent successfully
INFO:root:generated packet 2, at time 5804.875977
INFO:root:packet 2, at time 5804.875977, sent successfully
INFO:root:generated packet 3, at time 5806.868896
INFO:root:packet 3, at time 5806.868896, sent successfully
INFO:root:received ack for data packet - 5 at time 5853.745605
INFO:root:received ack for data packet - 6 at time 5855.742432
INFO:root:received ack for data packet - 7 at time 5855.742432
INFO:root:generated packet 4, at time 5856.736328
INFO:root:packet 4, at time 5856.736328, sent successfully
INFO:root:generated packet 5, at time 5863.716553
INFO:root:packet 5, at time 5863.716553, sent successfully
INFO:root:received ack for data packet - 0 at time 5867.222656
INFO:root:generated packet 6, at time 5868.218506
INFO:root:packet 6, at time 5868.218506, sent successfully
INFO:root:generated packet 7, at time 5874.203857
INFO:root:received ack for data packet - 1 at time 5911.623779
INFO:root:received ack for data packet - 2 at time 5917.606445
INFO:root:generated packet 0, at time 5918.603271
INFO:root:packet 0, at time 5918.603271, sent successfully
INFO:root:generated packet 1, at time 5921.595215
INFO:root:packet 1, at time 5921.595215, sent successfully
INFO:root:received ack for data packet - 3 at time 5935.571533
INFO:root:generated packet 2, at time 5936.553955
INFO:root:packet 2, at time 5936.553955, sent successfully
INFO:root:received ack for data packet - 4 at time 5952.512207
INFO:root:received ack for data packet - 5 at time 5953.510498
INFO:root:received ack for data packet - 6 at time 5953.510498
INFO:root:generated packet 3, at time 5954.507812
INFO:root:generated packet 4, at time 5956.502686
INFO:root:packet 4, at time 5956.502686, sent successfully
INFO:root:generated packet 5, at time 5970.464844
INFO:root:packet 5, at time 5970.464844, sent successfully
INFO:root:Timeout occured at time 6178.491211, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 7 at time 6186.296631
INFO:root:resent the packet number 7 at time 6186.296631
INFO:root:Trying to resend the packet number 0 at time 6187.293945
INFO:root:resent the packet number 0 at time 6187.293945
INFO:root:Trying to resend the packet number 1 at time 6188.290771
INFO:root:resent the packet number 1 at time 6188.290771
INFO:root:Trying to resend the packet number 2 at time 6189.287842
INFO:root:resent the packet number 2 at time 6189.287842
INFO:root:Trying to resend the packet number 3 at time 6189.287842
INFO:root:resent the packet number 3 at time 6189.287842
INFO:root:Trying to resend the packet number 4 at time 6190.285400
INFO:root:resent the packet number 4 at time 6190.285400
INFO:root:Trying to resend the packet number 5 at time 6190.285400
INFO:root:received ack for data packet - 7 at time 6197.271973
INFO:root:received ack for data packet - 0 at time 6204.247803
INFO:root:generated packet 6, at time 6208.237061
INFO:root:packet 6, at time 6208.237061, sent successfully
INFO:root:generated packet 7, at time 6210.243164
INFO:root:packet 7, at time 6210.243164, sent successfully
INFO:root:received ack for data packet - 1 at time 6234.166992
INFO:root:received ack for data packet - 2 at time 6235.165771
INFO:root:received ack for data packet - 3 at time 6235.165771
INFO:root:generated packet 0, at time 6237.161133
INFO:root:packet 0, at time 6237.161133, sent successfully
INFO:root:generated packet 1, at time 6240.151855
INFO:root:received ack for data packet - 4 at time 6240.151855
INFO:root:packet 1, at time 6240.151855, sent successfully
INFO:root:generated packet 2, at time 6242.147217
INFO:root:packet 2, at time 6242.147217, sent successfully
INFO:root:generated packet 3, at time 6245.142822
INFO:root:packet 3, at time 6245.142822, sent successfully
INFO:root:Timeout occured at time 6496.499023, will need to resend all the packets in window
INFO:root:Trying to resend the packet number 5 at time 6502.481445
INFO:root:resent the packet number 5 at time 6502.481445
INFO:root:Trying to resend the packet number 6 at time 6505.479736
INFO:root:resent the packet number 6 at time 6505.479736
INFO:root:Trying to resend the packet number 7 at time 6506.470703
INFO:root:Trying to resend the packet number 0 at time 6506.470703
INFO:root:resent the packet number 0 at time 6506.470703
INFO:root:received ack for data packet - 5 at time 6507.466553
INFO:root:received ack for data packet - 6 at time 6507.466553
INFO:root:Trying to resend the packet number 1 at time 6508.465576
INFO:root:resent the packet number 1 at time 6508.465576
INFO:root:Trying to resend the packet number 2 at time 6509.467041
INFO:root:resent the packet number 2 at time 6509.467041
INFO:root:Trying to resend the packet number 3 at time 6510.465088
INFO:root:resent the packet number 3 at time 6510.465088
INFO:root:generated packet 4, at time 6512.454834