forked from mininet/mininet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.dat
967 lines (866 loc) · 68.6 KB
/
test.dat
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
./server --verbose=3 --nodelay --recvbuffer=800K --reqsize=100 &
./client --verbose=3 --iterations=10 --rate=100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.2 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 8563 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 1435 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.0 ms
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.0 ms
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.0 ms
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.0 ms
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=600 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.0 ms
throughput: 0 Bps throughput: 0 Bps
./server --verbose=3 --nodelay --recvbuffer=800K --reqsize=100 &
./client --verbose=3 --iterations=10 --rate=100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.2 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 9394 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 604 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 36661 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
./client --verbose=3 --iterations=10 --rate=400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
./client --verbose=3 --iterations=10 --rate=500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
./server --verbose=3 --nodelay --recvbuffer=800K --reqsize=100 &
./client --verbose=3 --iterations=10 --rate=100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.1 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 5523 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 4475 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.1 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 14755 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 5240 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.2 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 26540 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 3455 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.2 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 23763 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 16230 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.1 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 30395 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 19602 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=600 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.2 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 38436 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 21554 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=700 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 47333 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 22656 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=800 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg (last): 0.0 ms RTT avg (last): 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 52943 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 27043 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=900 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 61366 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 28621 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=1000 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 71193 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 28790 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=1100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 89472 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 20507 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=1200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.7 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 103912 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 16066 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=1300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.3 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 112185 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 17790 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=1400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 110585 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 29391 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=1500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.3 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 129004 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 20967 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=1600 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.7 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 135432 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 24539 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=1700 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 145941 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 24027 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=1800 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 145810 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 34160 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=1900 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 152238 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 37726 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=2000 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.8 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 158152 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 41815 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=2100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 196709 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 13251 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=2200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 1.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 185830 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 34129 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=2300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 197148 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 32813 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=2400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.9 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 203467 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 36488 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=2500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 222856 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 27097 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=2600 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 211277 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 48676 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=2700 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 239993 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 29955 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=2800 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.2 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 1.1 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 231844 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 48107 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=2900 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.8 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 258099 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 31849 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=3000 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.8 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 275230 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 24712 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=3100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.7 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 257378 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 52566 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=3200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.3 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 311689 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 8246 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=3300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 1.2 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 289978 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 39961 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=3400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 295237 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 44701 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=3500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg (last): 0.0 ms RTT avg (last): 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 1.3 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 308764 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 41168 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=3600 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg (last): 0.0 ms RTT avg (last): 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.3 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 326627 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 33304 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=3700 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.9 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 329749 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 40183 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=3800 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 351496 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 28427 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=3900 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 1.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 348130 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 41794 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=4000 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.9 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 355705 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 44224 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=4100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 1.3 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 355377 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 54548 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=4200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.8 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 381298 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 38623 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=4300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.9 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 380482 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 49440 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=4400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 397501 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 42449 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=4500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 1.1 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 380035 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 69892 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=4600 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 394736 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 65177 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=4700 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 1.2 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 426913 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 43007 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=4800 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.7 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 429108 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 50805 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=4900 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.3 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 466347 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 23556 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=5000 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 451997 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 47911 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=5100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.9 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 461159 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 48747 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=5200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.9 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 478622 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 41281 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=5300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 1.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 475273 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 54635 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=5400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 479406 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 60489 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=5500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.8 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 487520 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 62374 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=5600 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg (last): 0.1 ms RTT avg (last): 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 489059 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 72694 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=5700 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.1 ms RTT avg: 0.1 ms
RTT avg (last): 0.0 ms RTT avg (last): 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 478809 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 95216 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=5800 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg (last): 0.0 ms RTT avg (last): 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.7 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 504890 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 78019 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=5900 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 503771 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 87547 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=6000 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg (last): 0.0 ms RTT avg (last): 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 524738 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 84595 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=6100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 528598 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 95996 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=6200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 541298 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 85585 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=6300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.8 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 548133 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 92449 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=6400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 568595 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 78565 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=6500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.7 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 567249 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 87201 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=6600 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 571656 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 96236 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=6700 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 588462 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 92273 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=6800 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.7 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 612028 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 80679 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=6900 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.7 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 601808 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 91208 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=7000 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 605356 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 118094 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=7100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 632664 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 91244 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=7200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.7 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 641715 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 92441 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=7300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 629198 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 111658 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=7400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 647537 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 102176 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=7500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.3 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 659657 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 107198 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=7600 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 657895 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 117393 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=7700 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 672535 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 113599 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=7800 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 691671 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 99036 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=7900 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 699915 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 103357 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=8000 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 705786 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 111625 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=8100 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg (last): 0.1 ms RTT avg (last): 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 698222 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 124499 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=8200 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 704272 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 135428 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=8300 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 732283 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 123985 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=8400 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 733566 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 123427 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=8500 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 739559 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 134447 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=8600 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.6 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 745994 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 131259 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=8700 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.5 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 776395 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 114876 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=8800 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.3 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 769299 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 124549 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=8900 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.4 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 777230 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 135217 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
./client --verbose=3 --iterations=10 --rate=9000 --nodelay --sendbuffer=800K --serverip=10.0.1.2
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
RTT avg: 0.3 ms RTT avg: 0.1 ms
RTT avg: 0.0 ms RTT avg: 0.0 ms
throughput: 775898 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps
throughput: 139781 Bps throughput: 0 Bps
throughput: 0 Bps throughput: 0 Bps