-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathout.log
executable file
·1411 lines (1144 loc) · 48.1 KB
/
out.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
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/client.o
Practicum2/
Practicum2/client_utils.c
700 7% 0.00kB/s 0:00:00 9,592 100% 8.48MB/s 0:00:00 (xfr#1, to-chk=7/15)
Practicum2/client_utils.h
1,230 100% 1.17MB/s 0:00:00 1,230 100% 1.17MB/s 0:00:00 (xfr#2, to-chk=6/15)
sent 1,870 bytes received 239 bytes 4,218.00 bytes/sec
total size is 115,985 speedup is 55.00
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
10,872 100% 10.37MB/s 0:00:00 10,872 100% 10.37MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
13,944 100% 13.30MB/s 0:00:00 13,944 100% 13.30MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
5,240 100% 5.00MB/s 0:00:00 5,240 100% 5.00MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
23,880 100% 11.39MB/s 0:00:00 23,880 100% 11.39MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.o
24,400 100% 7.76MB/s 0:00:00 24,400 100% 7.76MB/s 0:00:00 (xfr#7, to-chk=3/24)
Practicum2/test
13,088 100% 4.16MB/s 0:00:00 13,088 100% 3.12MB/s 0:00:00 (xfr#8, to-chk=2/24)
Practicum2/test.o
4,328 100% 1.03MB/s 0:00:00 4,328 100% 1.03MB/s 0:00:00 (xfr#9, to-chk=0/24)
sent 34,251 bytes received 191 bytes 68,884.00 bytes/sec
total size is 233,977 speedup is 6.79
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/
Practicum2/client.o
2,100 60% 0.00kB/s 0:00:00 3,480 100% 1.32MB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
2,792 25% 2.66MB/s 0:00:00 10,872 100% 10.37MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
9,562 50% 9.12MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
5,814 41% 5.54MB/s 0:00:00 13,944 100% 6.65MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
700 13% 341.80kB/s 0:00:00 5,240 100% 2.50MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
13,596 56% 6.48MB/s 0:00:00 23,880 100% 7.59MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.c
700 3% 227.86kB/s 0:00:00 18,485 100% 4.41MB/s 0:00:00 (xfr#7, to-chk=5/24)
Practicum2/server.o
8,188 33% 1.95MB/s 0:00:00 24,400 100% 4.65MB/s 0:00:00 (xfr#8, to-chk=3/24)
Practicum2/test
4,240 32% 828.12kB/s 0:00:00 13,088 100% 2.50MB/s 0:00:00 (xfr#9, to-chk=2/24)
Practicum2/test.o
700 16% 136.72kB/s 0:00:00 4,328 100% 704.43kB/s 0:00:00 (xfr#10, to-chk=0/24)
sent 30,800 bytes received 1,650 bytes 64,900.00 bytes/sec
total size is 234,056 speedup is 7.21
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/multi_client_test
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 439 bytes received 237 bytes 450.67 bytes/sec
total size is 116,064 speedup is 171.69
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
10,872 100% 10.37MB/s 0:00:00 10,872 100% 10.37MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
13,944 100% 13.30MB/s 0:00:00 13,944 100% 13.30MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
5,240 100% 5.00MB/s 0:00:00 5,240 100% 5.00MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
23,880 100% 11.39MB/s 0:00:00 23,880 100% 11.39MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.o
24,600 100% 7.82MB/s 0:00:00 24,600 100% 7.82MB/s 0:00:00 (xfr#7, to-chk=3/24)
Practicum2/test
13,088 100% 4.16MB/s 0:00:00 13,088 100% 4.16MB/s 0:00:00 (xfr#8, to-chk=2/24)
Practicum2/test.o
4,328 100% 1.03MB/s 0:00:00 4,328 100% 1.03MB/s 0:00:00 (xfr#9, to-chk=0/24)
sent 34,315 bytes received 191 bytes 69,012.00 bytes/sec
total size is 234,256 speedup is 6.79
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY client_utils.c
sending incremental file list
Practicum2/
Practicum2/client.o
2,100 60% 0.00kB/s 0:00:00 3,480 100% 1.32MB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.c
700 7% 683.59kB/s 0:00:00 9,656 100% 9.21MB/s 0:00:00 (xfr#2, to-chk=15/24)
Practicum2/client_utils.o
2,792 25% 2.66MB/s 0:00:00 10,872 100% 10.37MB/s 0:00:00 (xfr#3, to-chk=13/24)
Practicum2/fget
9,562 50% 9.12MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#4, to-chk=11/24)
Practicum2/multi_client_test
5,814 41% 2.77MB/s 0:00:00 13,944 100% 6.65MB/s 0:00:00 (xfr#5, to-chk=9/24)
Practicum2/multi_client_test.o
700 13% 341.80kB/s 0:00:00 5,240 100% 2.50MB/s 0:00:00 (xfr#6, to-chk=7/24)
Practicum2/server
13,596 56% 4.32MB/s 0:00:00 23,880 100% 7.59MB/s 0:00:00 (xfr#7, to-chk=6/24)
Practicum2/server.o
8,188 33% 1.95MB/s 0:00:00 24,600 100% 4.69MB/s 0:00:00 (xfr#8, to-chk=3/24)
Practicum2/test
4,240 32% 828.12kB/s 0:00:00 13,088 100% 2.50MB/s 0:00:00 (xfr#9, to-chk=2/24)
Practicum2/test.o
700 16% 136.72kB/s 0:00:00 4,328 100% 845.31kB/s 0:00:00 (xfr#10, to-chk=0/24)
sent 30,700 bytes received 1,572 bytes 21,514.67 bytes/sec
total size is 234,320 speedup is 7.26
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY client_utils.c
sending incremental file list
Practicum2/client_utils.c
700 7% 0.00kB/s 0:00:00 9,479 100% 8.37MB/s 0:00:00 (xfr#1, to-chk=15/24)
sent 977 bytes received 120 bytes 2,194.00 bytes/sec
total size is 234,143 speedup is 213.44
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,406 100% 16.89MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 913 bytes received 198 bytes 740.67 bytes/sec
total size is 234,064 speedup is 210.68
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,469 100% 16.95MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 959 bytes received 198 bytes 771.33 bytes/sec
total size is 234,127 speedup is 202.36
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,469 100% 16.95MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 705 bytes received 198 bytes 1,806.00 bytes/sec
total size is 234,127 speedup is 259.28
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/multi_client_test
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 439 bytes received 237 bytes 450.67 bytes/sec
total size is 115,935 speedup is 171.50
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
10,576 100% 10.09MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
13,944 100% 13.30MB/s 0:00:00 13,944 100% 13.30MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
5,240 100% 5.00MB/s 0:00:00 5,240 100% 5.00MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
23,880 100% 11.39MB/s 0:00:00 23,880 100% 11.39MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.o
24,528 100% 7.80MB/s 0:00:00 24,528 100% 7.80MB/s 0:00:00 (xfr#7, to-chk=3/24)
Practicum2/test
13,088 100% 3.12MB/s 0:00:00 13,088 100% 3.12MB/s 0:00:00 (xfr#8, to-chk=2/24)
Practicum2/test.o
4,328 100% 1.03MB/s 0:00:00 4,328 100% 1.03MB/s 0:00:00 (xfr#9, to-chk=0/24)
sent 34,216 bytes received 191 bytes 68,814.00 bytes/sec
total size is 233,759 speedup is 6.79
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY multi_client_test.c
sending incremental file list
Practicum2/
Practicum2/client.o
2,100 60% 0.00kB/s 0:00:00 3,480 100% 1.32MB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
2,792 26% 2.66MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
9,458 50% 9.02MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
5,814 41% 5.54MB/s 0:00:00 13,944 100% 6.65MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.c
700 22% 341.80kB/s 0:00:00 3,083 100% 1.47MB/s 0:00:00 (xfr#5, to-chk=8/24)
Practicum2/multi_client_test.o
700 13% 341.80kB/s 0:00:00 5,240 100% 2.50MB/s 0:00:00 (xfr#6, to-chk=7/24)
Practicum2/server
13,604 56% 4.32MB/s 0:00:00 23,880 100% 7.59MB/s 0:00:00 (xfr#7, to-chk=6/24)
Practicum2/server.o
8,188 33% 1.95MB/s 0:00:00 24,528 100% 5.85MB/s 0:00:00 (xfr#8, to-chk=3/24)
Practicum2/test
4,240 32% 1.01MB/s 0:00:00 13,088 100% 2.50MB/s 0:00:00 (xfr#9, to-chk=2/24)
Practicum2/test.o
700 16% 136.72kB/s 0:00:00 4,328 100% 845.31kB/s 0:00:00 (xfr#10, to-chk=0/24)
sent 30,511 bytes received 1,518 bytes 64,058.00 bytes/sec
total size is 233,765 speedup is 7.30
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY multi_client_test.c
sending incremental file list
Practicum2/multi_client_test.c
700 22% 0.00kB/s 0:00:00 3,077 100% 2.27MB/s 0:00:00 (xfr#1, to-chk=8/24)
sent 948 bytes received 66 bytes 2,028.00 bytes/sec
total size is 233,759 speedup is 230.53
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY multi_client_test.c
sending incremental file list
Practicum2/multi_client_test.c
700 22% 0.00kB/s 0:00:00 3,080 100% 2.27MB/s 0:00:00 (xfr#1, to-chk=8/24)
sent 957 bytes received 66 bytes 2,046.00 bytes/sec
total size is 233,762 speedup is 228.51
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY multi_client_test.c
sending incremental file list
Practicum2/multi_client_test.c
700 22% 0.00kB/s 0:00:00 3,080 100% 2.27MB/s 0:00:00 (xfr#1, to-chk=8/24)
sent 957 bytes received 66 bytes 2,046.00 bytes/sec
total size is 233,762 speedup is 228.51
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY client_utils.c
sending incremental file list
Practicum2/client_utils.c
700 7% 0.00kB/s 0:00:00 9,478 100% 8.37MB/s 0:00:00 (xfr#1, to-chk=15/24)
sent 984 bytes received 120 bytes 2,208.00 bytes/sec
total size is 233,761 speedup is 211.74
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/multi_client_test
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 438 bytes received 237 bytes 1,350.00 bytes/sec
total size is 115,937 speedup is 171.76
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
10,576 100% 10.09MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
13,944 100% 13.30MB/s 0:00:00 13,944 100% 13.30MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
5,248 100% 5.00MB/s 0:00:00 5,248 100% 5.00MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
23,880 100% 11.39MB/s 0:00:00 23,880 100% 11.39MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.o
24,528 100% 7.80MB/s 0:00:00 24,528 100% 7.80MB/s 0:00:00 (xfr#7, to-chk=3/24)
Practicum2/test
13,088 100% 4.16MB/s 0:00:00 13,088 100% 4.16MB/s 0:00:00 (xfr#8, to-chk=2/24)
Practicum2/test.o
4,328 100% 1.03MB/s 0:00:00 4,328 100% 1.03MB/s 0:00:00 (xfr#9, to-chk=0/24)
sent 34,246 bytes received 191 bytes 22,958.00 bytes/sec
total size is 233,769 speedup is 6.79
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY multi_client_test.c
sending incremental file list
Practicum2/multi_client_test.c
700 22% 0.00kB/s 0:00:00 3,080 100% 2.27MB/s 0:00:00 (xfr#1, to-chk=8/24)
sent 955 bytes received 66 bytes 2,042.00 bytes/sec
total size is 233,769 speedup is 228.96
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/multi_client_test
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 438 bytes received 237 bytes 1,350.00 bytes/sec
total size is 115,937 speedup is 171.76
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
10,576 100% 10.09MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
13,944 100% 13.30MB/s 0:00:00 13,944 100% 13.30MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
5,248 100% 5.00MB/s 0:00:00 5,248 100% 5.00MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
23,880 100% 11.39MB/s 0:00:00 23,880 100% 11.39MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.o
24,528 100% 7.80MB/s 0:00:00 24,528 100% 7.80MB/s 0:00:00 (xfr#7, to-chk=3/24)
Practicum2/test
13,088 100% 4.16MB/s 0:00:00 13,088 100% 4.16MB/s 0:00:00 (xfr#8, to-chk=2/24)
Practicum2/test.o
4,328 100% 1.03MB/s 0:00:00 4,328 100% 1.03MB/s 0:00:00 (xfr#9, to-chk=0/24)
sent 34,238 bytes received 191 bytes 68,858.00 bytes/sec
total size is 233,769 speedup is 6.79
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY multi_client_test.c
sending incremental file list
Practicum2/multi_client_test.c
700 26% 0.00kB/s 0:00:00 2,682 100% 1.89MB/s 0:00:00 (xfr#1, to-chk=8/24)
sent 1,079 bytes received 66 bytes 2,290.00 bytes/sec
total size is 233,371 speedup is 203.82
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY multi_client_test.c
sending incremental file list
Practicum2/multi_client_test.c
1,426 52% 0.00kB/s 0:00:00 2,708 100% 1.22MB/s 0:00:00 (xfr#1, to-chk=8/24)
sent 1,109 bytes received 60 bytes 2,338.00 bytes/sec
total size is 233,397 speedup is 199.66
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY multi_client_test.c
sending incremental file list
Practicum2/multi_client_test.c
1,375 51% 0.00kB/s 0:00:00 2,683 100% 1.25MB/s 0:00:00 (xfr#1, to-chk=8/24)
sent 1,085 bytes received 60 bytes 2,290.00 bytes/sec
total size is 233,372 speedup is 203.82
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY client_utils.c
sending incremental file list
Practicum2/client_utils.c
700 7% 0.00kB/s 0:00:00 9,478 100% 8.37MB/s 0:00:00 (xfr#1, to-chk=15/24)
sent 976 bytes received 120 bytes 2,192.00 bytes/sec
total size is 233,372 speedup is 212.93
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/multi_client_test
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 438 bytes received 237 bytes 1,350.00 bytes/sec
total size is 115,540 speedup is 171.17
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=15/23)
Practicum2/client_utils.o
10,576 100% 10.09MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=12/23)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=10/23)
Practicum2/multi_client_test.o
4,800 100% 4.58MB/s 0:00:00 4,800 100% 4.58MB/s 0:00:00 (xfr#4, to-chk=7/23)
Practicum2/server
23,880 100% 11.39MB/s 0:00:00 23,880 100% 11.39MB/s 0:00:00 (xfr#5, to-chk=6/23)
Practicum2/server.o
24,528 100% 7.80MB/s 0:00:00 24,528 100% 7.80MB/s 0:00:00 (xfr#6, to-chk=3/23)
Practicum2/test
13,088 100% 4.16MB/s 0:00:00 13,088 100% 4.16MB/s 0:00:00 (xfr#7, to-chk=2/23)
Practicum2/test.o
4,328 100% 1.38MB/s 0:00:00 4,328 100% 1.38MB/s 0:00:00 (xfr#8, to-chk=0/23)
sent 30,258 bytes received 172 bytes 60,860.00 bytes/sec
total size is 218,980 speedup is 7.20
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY multi_client_test.c
sending incremental file list
Practicum2/multi_client_test.c
700 26% 0.00kB/s 0:00:00 2,683 100% 1.89MB/s 0:00:00 (xfr#1, to-chk=8/23)
sent 675 bytes received 60 bytes 1,470.00 bytes/sec
total size is 218,980 speedup is 297.93
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 437 bytes received 205 bytes 1,284.00 bytes/sec
total size is 115,540 speedup is 179.97
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=15/23)
Practicum2/client_utils.o
10,576 100% 10.09MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=12/23)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=10/23)
Practicum2/multi_client_test.o
4,800 100% 4.58MB/s 0:00:00 4,800 100% 4.58MB/s 0:00:00 (xfr#4, to-chk=7/23)
Practicum2/server
23,880 100% 11.39MB/s 0:00:00 23,880 100% 11.39MB/s 0:00:00 (xfr#5, to-chk=6/23)
Practicum2/server.o
24,528 100% 7.80MB/s 0:00:00 24,528 100% 7.80MB/s 0:00:00 (xfr#6, to-chk=3/23)
Practicum2/test
13,088 100% 4.16MB/s 0:00:00 13,088 100% 4.16MB/s 0:00:00 (xfr#7, to-chk=2/23)
Practicum2/test.o
4,328 100% 1.38MB/s 0:00:00 4,328 100% 1.38MB/s 0:00:00 (xfr#8, to-chk=0/23)
sent 30,254 bytes received 172 bytes 60,852.00 bytes/sec
total size is 218,980 speedup is 7.20
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY Makefile
sending incremental file list
Practicum2/Makefile
1,279 100% 0.00kB/s 0:00:00 1,279 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=19/23)
sent 909 bytes received 48 bytes 1,914.00 bytes/sec
total size is 218,995 speedup is 228.83
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 441 bytes received 209 bytes 1,300.00 bytes/sec
total size is 115,555 speedup is 177.78
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
10,576 100% 10.09MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
19,040 100% 18.16MB/s 0:00:00 19,040 100% 18.16MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
4,800 100% 4.58MB/s 0:00:00 4,800 100% 2.29MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
23,880 100% 11.39MB/s 0:00:00 23,880 100% 11.39MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.o
24,528 100% 7.80MB/s 0:00:00 24,528 100% 7.80MB/s 0:00:00 (xfr#7, to-chk=3/24)
Practicum2/test
13,088 100% 3.12MB/s 0:00:00 13,088 100% 3.12MB/s 0:00:00 (xfr#8, to-chk=2/24)
Practicum2/test.o
4,328 100% 1.03MB/s 0:00:00 4,328 100% 1.03MB/s 0:00:00 (xfr#9, to-chk=0/24)
sent 36,107 bytes received 191 bytes 72,596.00 bytes/sec
total size is 238,035 speedup is 6.56
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
1,246 6% 0.00kB/s 0:00:00 18,315 100% 16.28MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 977 bytes received 198 bytes 2,350.00 bytes/sec
total size is 237,881 speedup is 202.45
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
1,398 7% 0.00kB/s 0:00:00 18,313 100% 16.13MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,049 bytes received 198 bytes 2,494.00 bytes/sec
total size is 237,879 speedup is 190.76
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
856 4% 0.00kB/s 0:00:00 18,469 100% 16.80MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 835 bytes received 198 bytes 2,066.00 bytes/sec
total size is 238,035 speedup is 230.43
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
1,377 7% 0.00kB/s 0:00:00 18,446 100% 16.28MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,076 bytes received 198 bytes 849.33 bytes/sec
total size is 238,012 speedup is 186.82
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
1,399 7% 0.00kB/s 0:00:00 18,445 100% 16.26MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,088 bytes received 198 bytes 2,572.00 bytes/sec
total size is 238,011 speedup is 185.08
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.h
sending incremental file list
Practicum2/server.h
1,417 100% 0.00kB/s 0:00:00 1,417 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=4/24)
sent 1,128 bytes received 48 bytes 2,352.00 bytes/sec
total size is 238,032 speedup is 202.41
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
1,379 7% 0.00kB/s 0:00:00 18,424 100% 16.26MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,085 bytes received 198 bytes 2,566.00 bytes/sec
total size is 238,011 speedup is 185.51
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
1,401 7% 0.00kB/s 0:00:00 18,425 100% 16.24MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,103 bytes received 198 bytes 867.33 bytes/sec
total size is 238,012 speedup is 182.95
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
1,399 7% 0.00kB/s 0:00:00 18,424 100% 16.24MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,101 bytes received 198 bytes 866.00 bytes/sec
total size is 238,011 speedup is 183.23
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,525 100% 17.00MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,013 bytes received 198 bytes 807.33 bytes/sec
total size is 238,112 speedup is 196.62
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,424 100% 16.90MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 953 bytes received 198 bytes 2,302.00 bytes/sec
total size is 238,011 speedup is 206.79
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,525 100% 17.00MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,012 bytes received 198 bytes 2,420.00 bytes/sec
total size is 238,112 speedup is 196.79
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,527 100% 17.00MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 968 bytes received 198 bytes 2,332.00 bytes/sec
total size is 238,114 speedup is 204.21
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,428 100% 16.91MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 956 bytes received 198 bytes 2,308.00 bytes/sec
total size is 238,015 speedup is 206.25
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,427 100% 16.91MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,003 bytes received 198 bytes 2,402.00 bytes/sec
total size is 238,014 speedup is 198.18
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,540 100% 17.01MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,055 bytes received 198 bytes 2,506.00 bytes/sec
total size is 238,127 speedup is 190.05
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/multi_client_test
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 439 bytes received 237 bytes 1,352.00 bytes/sec
total size is 115,647 speedup is 171.08
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
10,576 100% 10.09MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
19,040 100% 18.16MB/s 0:00:00 19,040 100% 18.16MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
4,800 100% 2.29MB/s 0:00:00 4,800 100% 2.29MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
23,880 100% 7.59MB/s 0:00:00 23,880 100% 7.59MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.o
24,528 100% 7.80MB/s 0:00:00 24,528 100% 7.80MB/s 0:00:00 (xfr#7, to-chk=3/24)
Practicum2/test
13,088 100% 3.12MB/s 0:00:00 13,088 100% 3.12MB/s 0:00:00 (xfr#8, to-chk=2/24)
Practicum2/test.o
4,328 100% 1.03MB/s 0:00:00 4,328 100% 1.03MB/s 0:00:00 (xfr#9, to-chk=0/24)
sent 36,121 bytes received 191 bytes 72,624.00 bytes/sec
total size is 238,127 speedup is 6.56
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
deleting Practicum2/clientfile.txt
Practicum2/
Practicum2/client.o
2,100 60% 0.00kB/s 0:00:00 3,480 100% 1.32MB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
2,792 26% 2.66MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
9,458 50% 9.02MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
10,370 54% 9.89MB/s 0:00:00 19,040 100% 6.05MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
2,792 58% 681.64kB/s 0:00:00 4,800 100% 1.14MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
13,604 56% 2.59MB/s 0:00:00 23,880 100% 4.55MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.c
700 3% 136.72kB/s 0:00:00 18,428 100% 2.93MB/s 0:00:00 (xfr#7, to-chk=5/24)
Practicum2/server.o
8,188 33% 1.12MB/s 0:00:00 24,528 100% 3.34MB/s 0:00:00 (xfr#8, to-chk=3/24)
Practicum2/test
4,240 32% 591.52kB/s 0:00:00 13,088 100% 1.56MB/s 0:00:00 (xfr#9, to-chk=2/24)
Practicum2/test.o
700 16% 85.45kB/s 0:00:00 4,328 100% 528.32kB/s 0:00:00 (xfr#10, to-chk=0/24)
sent 33,298 bytes received 1,715 bytes 70,026.00 bytes/sec
total size is 238,015 speedup is 6.80
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/multi_client_test
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 438 bytes received 237 bytes 1,350.00 bytes/sec
total size is 115,535 speedup is 171.16
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
10,576 100% 10.09MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
19,040 100% 18.16MB/s 0:00:00 19,040 100% 18.16MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
4,800 100% 4.58MB/s 0:00:00 4,800 100% 4.58MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
23,880 100% 11.39MB/s 0:00:00 23,880 100% 11.39MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.o
24,528 100% 7.80MB/s 0:00:00 24,528 100% 7.80MB/s 0:00:00 (xfr#7, to-chk=3/24)
Practicum2/test
13,088 100% 3.12MB/s 0:00:00 13,088 100% 3.12MB/s 0:00:00 (xfr#8, to-chk=2/24)
Practicum2/test.o
4,328 100% 1.03MB/s 0:00:00 4,328 100% 1.03MB/s 0:00:00 (xfr#9, to-chk=0/24)
sent 36,115 bytes received 191 bytes 24,204.00 bytes/sec
total size is 238,015 speedup is 6.56
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/
Practicum2/client.o
2,100 60% 0.00kB/s 0:00:00 3,480 100% 1.32MB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
2,792 26% 2.66MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
9,458 50% 9.02MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
10,370 54% 9.89MB/s 0:00:00 19,040 100% 9.08MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
2,792 58% 1.33MB/s 0:00:00 4,800 100% 2.29MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
13,604 56% 4.32MB/s 0:00:00 23,880 100% 7.59MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.c
700 3% 227.86kB/s 0:00:00 18,510 100% 4.41MB/s 0:00:00 (xfr#7, to-chk=5/24)
Practicum2/server.o
8,188 33% 1.95MB/s 0:00:00 24,528 100% 4.68MB/s 0:00:00 (xfr#8, to-chk=3/24)
Practicum2/test
4,240 32% 828.12kB/s 0:00:00 13,088 100% 2.50MB/s 0:00:00 (xfr#9, to-chk=2/24)
Practicum2/test.o
700 16% 136.72kB/s 0:00:00 4,328 100% 704.43kB/s 0:00:00 (xfr#10, to-chk=0/24)
sent 33,381 bytes received 1,686 bytes 70,134.00 bytes/sec
total size is 238,097 speedup is 6.79
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,511 100% 16.99MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 1,004 bytes received 198 bytes 2,404.00 bytes/sec
total size is 238,098 speedup is 198.08
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,484 100% 16.96MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 839 bytes received 198 bytes 691.33 bytes/sec
total size is 238,071 speedup is 229.58
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,437 100% 16.92MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 827 bytes received 198 bytes 2,050.00 bytes/sec
total size is 238,024 speedup is 232.22
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY server.c
sending incremental file list
Practicum2/server.c
700 3% 0.00kB/s 0:00:00 18,430 100% 16.91MB/s 0:00:00 (xfr#1, to-chk=5/24)
sent 926 bytes received 198 bytes 2,248.00 bytes/sec
total size is 238,017 speedup is 211.76
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/multi_client_test
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 442 bytes received 241 bytes 1,366.00 bytes/sec
total size is 115,537 speedup is 169.16
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ CREATE server.o
sending incremental file list
Practicum2/
Practicum2/client.o
3,480 100% 0.00kB/s 0:00:00 3,480 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
10,576 100% 10.09MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/fget
18,760 100% 17.89MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#3, to-chk=11/24)
Practicum2/multi_client_test
19,040 100% 18.16MB/s 0:00:00 19,040 100% 18.16MB/s 0:00:00 (xfr#4, to-chk=9/24)
Practicum2/multi_client_test.o
4,800 100% 4.58MB/s 0:00:00 4,800 100% 4.58MB/s 0:00:00 (xfr#5, to-chk=7/24)
Practicum2/server
23,880 100% 11.39MB/s 0:00:00 23,880 100% 11.39MB/s 0:00:00 (xfr#6, to-chk=6/24)
Practicum2/server.o
24,496 100% 7.79MB/s 0:00:00 24,496 100% 7.79MB/s 0:00:00 (xfr#7, to-chk=3/24)
Practicum2/test
13,088 100% 3.12MB/s 0:00:00 13,088 100% 3.12MB/s 0:00:00 (xfr#8, to-chk=2/24)
Practicum2/test.o
4,328 100% 1.03MB/s 0:00:00 4,328 100% 1.03MB/s 0:00:00 (xfr#9, to-chk=0/24)
sent 36,099 bytes received 191 bytes 72,580.00 bytes/sec
total size is 237,985 speedup is 6.56
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY config.txt
sending incremental file list
Practicum2/
Practicum2/client.o
2,100 60% 0.00kB/s 0:00:00 3,480 100% 1.32MB/s 0:00:00 (xfr#1, to-chk=16/24)
Practicum2/client_utils.o
2,792 26% 2.66MB/s 0:00:00 10,576 100% 10.09MB/s 0:00:00 (xfr#2, to-chk=13/24)
Practicum2/config.txt
55 100% 53.71kB/s 0:00:00 55 100% 53.71kB/s 0:00:00 (xfr#3, to-chk=12/24)
Practicum2/fget
9,458 50% 9.02MB/s 0:00:00 18,760 100% 17.89MB/s 0:00:00 (xfr#4, to-chk=11/24)
Practicum2/multi_client_test
10,370 54% 4.94MB/s 0:00:00 19,040 100% 9.08MB/s 0:00:00 (xfr#5, to-chk=9/24)
Practicum2/multi_client_test.o
2,792 58% 1.33MB/s 0:00:00 4,800 100% 2.29MB/s 0:00:00 (xfr#6, to-chk=7/24)
Practicum2/server
13,604 56% 4.32MB/s 0:00:00 23,880 100% 7.59MB/s 0:00:00 (xfr#7, to-chk=6/24)
Practicum2/server.o
8,188 33% 1.95MB/s 0:00:00 24,496 100% 5.84MB/s 0:00:00 (xfr#8, to-chk=3/24)
Practicum2/test
4,240 32% 828.12kB/s 0:00:00 13,088 100% 2.50MB/s 0:00:00 (xfr#9, to-chk=2/24)
Practicum2/test.o
700 16% 136.72kB/s 0:00:00 4,328 100% 845.31kB/s 0:00:00 (xfr#10, to-chk=0/24)
sent 33,040 bytes received 1,530 bytes 23,046.67 bytes/sec
total size is 237,981 speedup is 6.88
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY config.txt
sending incremental file list
Practicum2/config.txt
55 100% 0.00kB/s 0:00:00 55 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=12/24)
sent 747 bytes received 42 bytes 1,578.00 bytes/sec
total size is 237,981 speedup is 301.62
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY config.txt
sending incremental file list
Practicum2/config.txt
55 100% 0.00kB/s 0:00:00 55 100% 0.00kB/s 0:00:00 (xfr#1, to-chk=12/24)
sent 699 bytes received 42 bytes 1,482.00 bytes/sec
total size is 237,981 speedup is 321.16
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ DELETE server.o
sending incremental file list
deleting Practicum2/test.o
deleting Practicum2/test
deleting Practicum2/server.o
deleting Practicum2/server
deleting Practicum2/multi_client_test.o
deleting Practicum2/multi_client_test
deleting Practicum2/fget
deleting Practicum2/client_utils.o
deleting Practicum2/client.o
Practicum2/
sent 437 bytes received 237 bytes 1,348.00 bytes/sec
total size is 115,533 speedup is 171.41
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MOVED_FROM Practicum2.tar
sending incremental file list
deleting Practicum2/Practicum2.tar
Practicum2/
sent 409 bytes received 49 bytes 916.00 bytes/sec
total size is 54,093 speedup is 118.11
Setting up watches. Beware: since -r was given, this may take a while!
Watches established.
/home/ning/Workspace/HW12/Practicum2/ MODIFY .DS_Store
sending incremental file list
Practicum2/.DS_Store
800 13% 0.00kB/s 0:00:00 6,148 100% 5.10MB/s 0:00:00 (xfr#1, to-chk=12/14)