-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.log
4693 lines (4693 loc) · 407 KB
/
log.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
server INFO MainThread 2017-09-11 18:42:21,342 Loggers set, imports completed
server INFO MainThread 2017-09-11 18:43:29,188 Loggers set, imports completed
server INFO MainThread 2017-09-11 18:43:29,188 Initalizing Attributes
server INFO MainThread 2017-09-11 18:43:29,188 Checking if host and port are available:
server INFO MainThread 2017-09-11 18:43:29,188 Changing the Directory:
server INFO MainThread 2017-09-11 18:43:29,188 Directory Changed:
server INFO MainThread 2017-09-11 18:43:29,189 Making Temprorary s_split Directory:
server INFO MainThread 2017-09-11 18:43:29,191 Directory made succesfully
server INFO MainThread 2017-09-11 18:43:29,191 Connecting...
server INFO MainThread 2017-09-11 18:43:29,191 Binding the Socket to host and Port:
server INFO MainThread 2017-09-11 18:43:29,192 The Server Socket is now being binded to host: localhost and port: 10001
server INFO MainThread 2017-09-11 18:43:29,192 Server socket is listing for 1 connections
client INFO MainThread 2017-09-11 18:43:43,531 Loggers set, imports completed
client INFO MainThread 2017-09-11 18:43:43,532 Changing the Directory:
client INFO MainThread 2017-09-11 18:43:43,532 Directory Changed:
client INFO MainThread 2017-09-11 18:43:43,532 Making Temprorary c_split Directory:
client INFO MainThread 2017-09-11 18:43:43,534 Directory made succesfully
client INFO MainThread 2017-09-11 18:43:43,535 Opening File
client INFO MainThread 2017-09-11 18:43:43,554 Reading File
client INFO MainThread 2017-09-11 18:43:46,419 Calculating Size of Stuff
client INFO MainThread 2017-09-11 18:43:46,420 File read with the size of: 176.1465139389038 MB
client INFO MainThread 2017-09-11 18:43:46,421 Closing File
client INFO MainThread 2017-09-11 18:43:46,519 Calculating Size of Stuff
client INFO MainThread 2017-09-11 18:43:46,519 Cpickle has Serialized: 176.1465139389038 MB
client INFO MainThread 2017-09-11 18:43:46,520 Attempt to write file
client INFO MainThread 2017-09-11 18:43:46,645 File written :
client INFO MainThread 2017-09-11 18:43:46,645 Attempting to Find Check Sum of stuff:
client INFO MainThread 2017-09-11 18:43:47,558 Check Sum Found
client INFO MainThread 2017-09-11 18:43:47,558 Spliting the Files into 3m parts:
client INFO MainThread 2017-09-11 18:43:50,896 Changing Directory:
client INFO MainThread 2017-09-11 18:43:50,898 Finding CRC for each splited file:
client INFO MainThread 2017-09-11 18:43:52,005 Files split Succesfully
client INFO MainThread 2017-09-11 18:43:52,006 Chksum being written
client INFO MainThread 2017-09-11 18:43:52,007 Calculating Size of Stuff
client INFO MainThread 2017-09-11 18:43:52,007 Cpickle has Serialized: 0.00217437744140625 MB
client INFO MainThread 2017-09-11 18:43:52,007 Attempt to write file
client INFO MainThread 2017-09-11 18:43:52,007 File written :
client INFO MainThread 2017-09-11 18:43:52,008 Attempting to Find Check Sum of stuff:
client INFO MainThread 2017-09-11 18:43:52,014 Check Sum Found
client INFO MainThread 2017-09-11 18:43:52,014 Chksum being written
client INFO MainThread 2017-09-11 18:43:52,014 Changing Directory:
client INFO MainThread 2017-09-11 18:43:52,015 Entering Directory to count number of files
client INFO MainThread 2017-09-11 18:43:52,015 Files calulcated.
Exit Directory to count number of files
client INFO MainThread 2017-09-11 18:43:52,016 Connecting...
client INFO MainThread 2017-09-11 18:43:52,016 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:43:52,017 Connection recieved.
server INFO MainThread 2017-09-11 18:43:52,017 Waiting for handshake reply.
client INFO MainThread 2017-09-11 18:43:52,017 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:50,900 Sending CRC's and number of files to server along with authentication
client INFO MainThread 2017-09-11 18:44:50,901 CRC and Number of files sent.
server INFO MainThread 2017-09-11 18:44:50,901 Handshake reply recieved.
client INFO MainThread 2017-09-11 18:44:50,901 Waiting for handshake reply.
server INFO MainThread 2017-09-11 18:44:50,901 Decoding data for CRC and File Numbers
server INFO MainThread 2017-09-11 18:44:50,902 Data decoded for CRC and File Numbers
server INFO MainThread 2017-09-11 18:44:50,903 Sending handshake back
server INFO MainThread 2017-09-11 18:44:50,904 Handshake back sent
client INFO MainThread 2017-09-11 18:44:50,904 Decoding data for CRC and File Numbers
client INFO MainThread 2017-09-11 18:44:50,904 Data decoded for CRC and File Numbers
server INFO MainThread 2017-09-11 18:44:50,904 Waiting for the connection:
client INFO MainThread 2017-09-11 18:44:50,905 Handshake reply recieved.
client INFO MainThread 2017-09-11 18:44:50,905 Handshake Complete.
client INFO MainThread 2017-09-11 18:44:50,905 Changing the Directory:
client INFO MainThread 2017-09-11 18:44:50,905 Directory Changed:
client INFO MainThread 2017-09-11 18:44:51,920 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:51,921 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:51,921 Opening large file:
client INFO MainThread 2017-09-11 18:44:51,922 File copied into memory:
server INFO MainThread 2017-09-11 18:44:51,922 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37838)> and address ('127.0.0.1', 37838)
client INFO MainThread 2017-09-11 18:44:51,922 Sending large file:
server INFO MainThread 2017-09-11 18:44:51,923 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:51,923 Sending Speed: 43.86259541984733 MBPS
client INFO MainThread 2017-09-11 18:44:51,923 Closing Socket
server INFO MainThread 2017-09-11 18:44:51,924 Speed of data transfer is 5.636096125551741 MBPS
server INFO MainThread 2017-09-11 18:44:51,924 Closing Socket
client INFO MainThread 2017-09-11 18:44:51,924 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:44:51,925 Attempt to write file
client INFO MainThread 2017-09-11 18:44:51,925 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:51,926 Opening large file:
server INFO MainThread 2017-09-11 18:44:51,926 File written :
server INFO MainThread 2017-09-11 18:44:51,926 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:51,927 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37840)> and address ('127.0.0.1', 37840)
client INFO MainThread 2017-09-11 18:44:51,932 File copied into memory:
client INFO MainThread 2017-09-11 18:44:51,932 Sending large file:
server INFO MainThread 2017-09-11 18:44:51,932 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:51,934 Sending Speed: 1889.629674125244 MBPS
client INFO MainThread 2017-09-11 18:44:51,934 Closing Socket
client INFO MainThread 2017-09-11 18:44:51,935 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:51,936 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:51,936 Opening large file:
client INFO MainThread 2017-09-11 18:44:51,938 File copied into memory:
client INFO MainThread 2017-09-11 18:44:51,939 Sending large file:
client INFO MainThread 2017-09-11 18:44:51,955 Sending Speed: 184.0164375548406 MBPS
client INFO MainThread 2017-09-11 18:44:51,955 Closing Socket
client INFO MainThread 2017-09-11 18:44:51,956 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:51,956 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:51,956 Opening large file:
client INFO MainThread 2017-09-11 18:44:51,957 File copied into memory:
client INFO MainThread 2017-09-11 18:44:51,958 Sending large file:
client INFO MainThread 2017-09-11 18:44:51,971 Sending Speed: 225.14750930432294 MBPS
client INFO MainThread 2017-09-11 18:44:51,971 Closing Socket
client INFO MainThread 2017-09-11 18:44:51,972 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:44:51,978 Speed of data transfer is 66.66619336996085 MBPS
server INFO MainThread 2017-09-11 18:44:51,978 Closing Socket
server INFO MainThread 2017-09-11 18:44:51,980 Attempt to write file
server INFO MainThread 2017-09-11 18:44:51,983 File written :
server INFO MainThread 2017-09-11 18:44:51,983 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:51,983 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37842)> and address ('127.0.0.1', 37842)
server INFO MainThread 2017-09-11 18:44:51,983 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:52,005 Speed of data transfer is 136.8748735464642 MBPS
server INFO MainThread 2017-09-11 18:44:52,006 Closing Socket
server INFO MainThread 2017-09-11 18:44:52,009 Attempt to write file
server INFO MainThread 2017-09-11 18:44:52,012 File written :
server INFO MainThread 2017-09-11 18:44:52,012 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:52,012 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37844)> and address ('127.0.0.1', 37844)
server INFO MainThread 2017-09-11 18:44:52,013 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:52,040 Speed of data transfer is 111.063444428753 MBPS
server INFO MainThread 2017-09-11 18:44:52,041 Closing Socket
server INFO MainThread 2017-09-11 18:44:52,044 Attempt to write file
server INFO MainThread 2017-09-11 18:44:52,048 File written :
server INFO MainThread 2017-09-11 18:44:52,048 Waiting for the connection:
client INFO MainThread 2017-09-11 18:44:52,987 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:44:52,987 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37846)> and address ('127.0.0.1', 37846)
client INFO MainThread 2017-09-11 18:44:52,987 Opening large file:
client INFO MainThread 2017-09-11 18:44:52,989 File copied into memory:
client INFO MainThread 2017-09-11 18:44:52,989 Sending large file:
server INFO MainThread 2017-09-11 18:44:52,989 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:52,991 Sending Speed: 2750.993441189331 MBPS
client INFO MainThread 2017-09-11 18:44:52,991 Closing Socket
client INFO MainThread 2017-09-11 18:44:52,992 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:52,992 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:52,993 Opening large file:
client INFO MainThread 2017-09-11 18:44:52,996 File copied into memory:
client INFO MainThread 2017-09-11 18:44:52,996 Sending large file:
client INFO MainThread 2017-09-11 18:44:53,011 Sending Speed: 207.73697417948887 MBPS
client INFO MainThread 2017-09-11 18:44:53,012 Closing Socket
client INFO MainThread 2017-09-11 18:44:53,012 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:53,013 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:53,013 Opening large file:
server INFO MainThread 2017-09-11 18:44:53,014 Speed of data transfer is 126.33451471370769 MBPS
server INFO MainThread 2017-09-11 18:44:53,014 Closing Socket
client INFO MainThread 2017-09-11 18:44:53,015 File copied into memory:
client INFO MainThread 2017-09-11 18:44:53,015 Sending large file:
server INFO MainThread 2017-09-11 18:44:53,021 Attempt to write file
server INFO MainThread 2017-09-11 18:44:53,026 File written :
server INFO MainThread 2017-09-11 18:44:53,026 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:53,027 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37848)> and address ('127.0.0.1', 37848)
server INFO MainThread 2017-09-11 18:44:53,027 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:53,031 Sending Speed: 186.10942006478237 MBPS
client INFO MainThread 2017-09-11 18:44:53,032 Closing Socket
client INFO MainThread 2017-09-11 18:44:53,032 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:53,033 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:53,033 Opening large file:
client INFO MainThread 2017-09-11 18:44:53,037 File copied into memory:
client INFO MainThread 2017-09-11 18:44:53,037 Sending large file:
server INFO MainThread 2017-09-11 18:44:53,050 Speed of data transfer is 130.66504672897196 MBPS
server INFO MainThread 2017-09-11 18:44:53,050 Closing Socket
client INFO MainThread 2017-09-11 18:44:53,051 Sending Speed: 229.9112735245752 MBPS
client INFO MainThread 2017-09-11 18:44:53,051 Closing Socket
client INFO MainThread 2017-09-11 18:44:53,052 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:44:53,057 Attempt to write file
server INFO MainThread 2017-09-11 18:44:53,061 File written :
server INFO MainThread 2017-09-11 18:44:53,061 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:53,062 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37850)> and address ('127.0.0.1', 37850)
server INFO MainThread 2017-09-11 18:44:53,062 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:53,074 Speed of data transfer is 243.23051050586668 MBPS
server INFO MainThread 2017-09-11 18:44:53,075 Closing Socket
server INFO MainThread 2017-09-11 18:44:53,082 Attempt to write file
server INFO MainThread 2017-09-11 18:44:53,085 File written :
server INFO MainThread 2017-09-11 18:44:53,085 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:53,085 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37852)> and address ('127.0.0.1', 37852)
server INFO MainThread 2017-09-11 18:44:53,085 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:53,102 Speed of data transfer is 186.15347289000667 MBPS
server INFO MainThread 2017-09-11 18:44:53,102 Closing Socket
server INFO MainThread 2017-09-11 18:44:53,110 Attempt to write file
server INFO MainThread 2017-09-11 18:44:53,113 File written :
server INFO MainThread 2017-09-11 18:44:53,113 Waiting for the connection:
client INFO MainThread 2017-09-11 18:44:54,075 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:44:54,075 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37854)> and address ('127.0.0.1', 37854)
client INFO MainThread 2017-09-11 18:44:54,076 Opening large file:
client INFO MainThread 2017-09-11 18:44:54,078 File copied into memory:
client INFO MainThread 2017-09-11 18:44:54,079 Sending large file:
server INFO MainThread 2017-09-11 18:44:54,080 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:54,081 Sending Speed: 1832.9270211216315 MBPS
client INFO MainThread 2017-09-11 18:44:54,082 Closing Socket
client INFO MainThread 2017-09-11 18:44:54,083 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:54,083 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:54,084 Opening large file:
client INFO MainThread 2017-09-11 18:44:54,088 File copied into memory:
client INFO MainThread 2017-09-11 18:44:54,088 Sending large file:
client INFO MainThread 2017-09-11 18:44:54,107 Sending Speed: 160.99701882109088 MBPS
client INFO MainThread 2017-09-11 18:44:54,108 Closing Socket
client INFO MainThread 2017-09-11 18:44:54,110 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:54,111 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:54,112 Opening large file:
client INFO MainThread 2017-09-11 18:44:54,115 File copied into memory:
client INFO MainThread 2017-09-11 18:44:54,115 Sending large file:
server INFO MainThread 2017-09-11 18:44:54,128 Speed of data transfer is 63.616271309834374 MBPS
server INFO MainThread 2017-09-11 18:44:54,128 Closing Socket
client INFO MainThread 2017-09-11 18:44:54,135 Sending Speed: 154.22854131172858 MBPS
client INFO MainThread 2017-09-11 18:44:54,136 Closing Socket
client INFO MainThread 2017-09-11 18:44:54,137 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:44:54,146 Attempt to write file
server INFO MainThread 2017-09-11 18:44:54,152 File written :
server INFO MainThread 2017-09-11 18:44:54,153 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:54,153 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37856)> and address ('127.0.0.1', 37856)
server INFO MainThread 2017-09-11 18:44:54,153 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:54,173 Speed of data transfer is 159.57597047670984 MBPS
server INFO MainThread 2017-09-11 18:44:54,173 Closing Socket
server INFO MainThread 2017-09-11 18:44:54,185 Attempt to write file
server INFO MainThread 2017-09-11 18:44:54,189 File written :
server INFO MainThread 2017-09-11 18:44:54,189 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:54,189 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37858)> and address ('127.0.0.1', 37858)
server INFO MainThread 2017-09-11 18:44:54,190 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:54,210 Speed of data transfer is 151.55363917761693 MBPS
server INFO MainThread 2017-09-11 18:44:54,210 Closing Socket
server INFO MainThread 2017-09-11 18:44:54,226 Attempt to write file
server INFO MainThread 2017-09-11 18:44:54,229 File written :
server INFO MainThread 2017-09-11 18:44:54,230 Waiting for the connection:
client INFO MainThread 2017-09-11 18:44:55,167 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:44:55,168 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37860)> and address ('127.0.0.1', 37860)
client INFO MainThread 2017-09-11 18:44:55,168 Opening large file:
client INFO MainThread 2017-09-11 18:44:55,172 File copied into memory:
client INFO MainThread 2017-09-11 18:44:55,172 Sending large file:
server INFO MainThread 2017-09-11 18:44:55,174 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:55,176 Sending Speed: 845.464220923201 MBPS
client INFO MainThread 2017-09-11 18:44:55,180 Closing Socket
client INFO MainThread 2017-09-11 18:44:55,183 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:55,184 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:55,185 Opening large file:
client INFO MainThread 2017-09-11 18:44:55,189 File copied into memory:
client INFO MainThread 2017-09-11 18:44:55,190 Sending large file:
client INFO MainThread 2017-09-11 18:44:55,207 Sending Speed: 179.34783352337513 MBPS
client INFO MainThread 2017-09-11 18:44:55,209 Closing Socket
client INFO MainThread 2017-09-11 18:44:55,209 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:55,210 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:55,211 Opening large file:
client INFO MainThread 2017-09-11 18:44:55,214 File copied into memory:
client INFO MainThread 2017-09-11 18:44:55,214 Sending large file:
server INFO MainThread 2017-09-11 18:44:55,217 Speed of data transfer is 71.81160007533258 MBPS
server INFO MainThread 2017-09-11 18:44:55,217 Closing Socket
client INFO MainThread 2017-09-11 18:44:55,231 Sending Speed: 186.7834993394392 MBPS
client INFO MainThread 2017-09-11 18:44:55,232 Closing Socket
client INFO MainThread 2017-09-11 18:44:55,233 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:44:55,236 Attempt to write file
server INFO MainThread 2017-09-11 18:44:55,241 File written :
server INFO MainThread 2017-09-11 18:44:55,241 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:55,242 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37862)> and address ('127.0.0.1', 37862)
server INFO MainThread 2017-09-11 18:44:55,242 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:55,266 Speed of data transfer is 131.03788557265742 MBPS
server INFO MainThread 2017-09-11 18:44:55,266 Closing Socket
server INFO MainThread 2017-09-11 18:44:55,286 Attempt to write file
server INFO MainThread 2017-09-11 18:44:55,291 File written :
server INFO MainThread 2017-09-11 18:44:55,291 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:55,291 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37864)> and address ('127.0.0.1', 37864)
server INFO MainThread 2017-09-11 18:44:55,291 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:55,309 Speed of data transfer is 168.42290961170377 MBPS
server INFO MainThread 2017-09-11 18:44:55,310 Closing Socket
server INFO MainThread 2017-09-11 18:44:55,327 Attempt to write file
server INFO MainThread 2017-09-11 18:44:55,330 File written :
server INFO MainThread 2017-09-11 18:44:55,331 Waiting for the connection:
client INFO MainThread 2017-09-11 18:44:56,251 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:44:56,251 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37866)> and address ('127.0.0.1', 37866)
client INFO MainThread 2017-09-11 18:44:56,252 Opening large file:
client INFO MainThread 2017-09-11 18:44:56,254 File copied into memory:
client INFO MainThread 2017-09-11 18:44:56,255 Sending large file:
server INFO MainThread 2017-09-11 18:44:56,259 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:56,259 Sending Speed: 801.8252724144523 MBPS
client INFO MainThread 2017-09-11 18:44:56,260 Closing Socket
client INFO MainThread 2017-09-11 18:44:56,261 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:56,264 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:56,270 Opening large file:
client INFO MainThread 2017-09-11 18:44:56,276 File copied into memory:
client INFO MainThread 2017-09-11 18:44:56,285 Sending large file:
server INFO MainThread 2017-09-11 18:44:56,300 Speed of data transfer is 75.67610284167795 MBPS
server INFO MainThread 2017-09-11 18:44:56,300 Closing Socket
client INFO MainThread 2017-09-11 18:44:56,303 Sending Speed: 181.07444129455612 MBPS
client INFO MainThread 2017-09-11 18:44:56,303 Closing Socket
client INFO MainThread 2017-09-11 18:44:56,304 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:56,305 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:56,305 Opening large file:
client INFO MainThread 2017-09-11 18:44:56,310 File copied into memory:
client INFO MainThread 2017-09-11 18:44:56,312 Sending large file:
client INFO MainThread 2017-09-11 18:44:56,327 Sending Speed: 215.37088575096277 MBPS
client INFO MainThread 2017-09-11 18:44:56,327 Closing Socket
server INFO MainThread 2017-09-11 18:44:56,327 Attempt to write file
client INFO MainThread 2017-09-11 18:44:56,328 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:44:56,333 File written :
server INFO MainThread 2017-09-11 18:44:56,333 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:56,334 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37868)> and address ('127.0.0.1', 37868)
server INFO MainThread 2017-09-11 18:44:56,335 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:56,354 Speed of data transfer is 157.26249484458776 MBPS
server INFO MainThread 2017-09-11 18:44:56,354 Closing Socket
server INFO MainThread 2017-09-11 18:44:56,374 Attempt to write file
server INFO MainThread 2017-09-11 18:44:56,377 File written :
server INFO MainThread 2017-09-11 18:44:56,377 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:56,377 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37870)> and address ('127.0.0.1', 37870)
server INFO MainThread 2017-09-11 18:44:56,377 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:56,396 Speed of data transfer is 162.5863320972181 MBPS
server INFO MainThread 2017-09-11 18:44:56,396 Closing Socket
server INFO MainThread 2017-09-11 18:44:56,421 Attempt to write file
server INFO MainThread 2017-09-11 18:44:56,423 File written :
server INFO MainThread 2017-09-11 18:44:56,423 Waiting for the connection:
client INFO MainThread 2017-09-11 18:44:57,343 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:44:57,343 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37872)> and address ('127.0.0.1', 37872)
client INFO MainThread 2017-09-11 18:44:57,344 Opening large file:
client INFO MainThread 2017-09-11 18:44:57,347 File copied into memory:
client INFO MainThread 2017-09-11 18:44:57,347 Sending large file:
server INFO MainThread 2017-09-11 18:44:57,348 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:57,352 Sending Speed: 727.9326622700452 MBPS
client INFO MainThread 2017-09-11 18:44:57,353 Closing Socket
client INFO MainThread 2017-09-11 18:44:57,358 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:57,359 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:57,360 Opening large file:
client INFO MainThread 2017-09-11 18:44:57,363 File copied into memory:
client INFO MainThread 2017-09-11 18:44:57,363 Sending large file:
server INFO MainThread 2017-09-11 18:44:57,373 Speed of data transfer is 121.70936103534328 MBPS
server INFO MainThread 2017-09-11 18:44:57,373 Closing Socket
client INFO MainThread 2017-09-11 18:44:57,379 Sending Speed: 195.662323122376 MBPS
client INFO MainThread 2017-09-11 18:44:57,379 Closing Socket
client INFO MainThread 2017-09-11 18:44:57,380 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:57,380 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:57,380 Opening large file:
client INFO MainThread 2017-09-11 18:44:57,383 File copied into memory:
client INFO MainThread 2017-09-11 18:44:57,383 Sending large file:
server INFO MainThread 2017-09-11 18:44:57,395 Attempt to write file
server INFO MainThread 2017-09-11 18:44:57,398 File written :
server INFO MainThread 2017-09-11 18:44:57,398 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:57,398 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37874)> and address ('127.0.0.1', 37874)
server INFO MainThread 2017-09-11 18:44:57,398 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:57,403 Sending Speed: 150.56530895515243 MBPS
client INFO MainThread 2017-09-11 18:44:57,404 Closing Socket
client INFO MainThread 2017-09-11 18:44:57,404 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:57,404 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:57,405 Opening large file:
client INFO MainThread 2017-09-11 18:44:57,408 File copied into memory:
client INFO MainThread 2017-09-11 18:44:57,409 Sending large file:
server INFO MainThread 2017-09-11 18:44:57,416 Speed of data transfer is 169.87814394297362 MBPS
server INFO MainThread 2017-09-11 18:44:57,417 Closing Socket
client INFO MainThread 2017-09-11 18:44:57,423 Sending Speed: 226.37481334892507 MBPS
client INFO MainThread 2017-09-11 18:44:57,424 Closing Socket
client INFO MainThread 2017-09-11 18:44:57,424 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:44:57,441 Attempt to write file
server INFO MainThread 2017-09-11 18:44:57,443 File written :
server INFO MainThread 2017-09-11 18:44:57,443 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:57,443 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37876)> and address ('127.0.0.1', 37876)
server INFO MainThread 2017-09-11 18:44:57,443 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:57,460 Speed of data transfer is 186.34093029454885 MBPS
server INFO MainThread 2017-09-11 18:44:57,460 Closing Socket
server INFO MainThread 2017-09-11 18:44:57,485 Attempt to write file
server INFO MainThread 2017-09-11 18:44:57,487 File written :
server INFO MainThread 2017-09-11 18:44:57,487 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:57,488 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37878)> and address ('127.0.0.1', 37878)
server INFO MainThread 2017-09-11 18:44:57,488 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:57,500 Speed of data transfer is 252.5397182194035 MBPS
server INFO MainThread 2017-09-11 18:44:57,500 Closing Socket
server INFO MainThread 2017-09-11 18:44:57,527 Attempt to write file
server INFO MainThread 2017-09-11 18:44:57,530 File written :
server INFO MainThread 2017-09-11 18:44:57,530 Waiting for the connection:
client INFO MainThread 2017-09-11 18:44:58,427 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:44:58,428 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37880)> and address ('127.0.0.1', 37880)
client INFO MainThread 2017-09-11 18:44:58,428 Opening large file:
client INFO MainThread 2017-09-11 18:44:58,432 File copied into memory:
client INFO MainThread 2017-09-11 18:44:58,433 Sending large file:
server INFO MainThread 2017-09-11 18:44:58,433 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:58,436 Sending Speed: 1078.238560411311 MBPS
client INFO MainThread 2017-09-11 18:44:58,437 Closing Socket
client INFO MainThread 2017-09-11 18:44:58,438 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:58,439 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:58,442 Opening large file:
client INFO MainThread 2017-09-11 18:44:58,449 File copied into memory:
client INFO MainThread 2017-09-11 18:44:58,450 Sending large file:
client INFO MainThread 2017-09-11 18:44:58,467 Sending Speed: 181.61543790774203 MBPS
client INFO MainThread 2017-09-11 18:44:58,471 Closing Socket
client INFO MainThread 2017-09-11 18:44:58,471 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:58,472 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:58,473 Opening large file:
server INFO MainThread 2017-09-11 18:44:58,474 Speed of data transfer is 75.167077854971 MBPS
server INFO MainThread 2017-09-11 18:44:58,474 Closing Socket
client INFO MainThread 2017-09-11 18:44:58,475 File copied into memory:
client INFO MainThread 2017-09-11 18:44:58,475 Sending large file:
client INFO MainThread 2017-09-11 18:44:58,491 Sending Speed: 188.43098026296084 MBPS
client INFO MainThread 2017-09-11 18:44:58,491 Closing Socket
client INFO MainThread 2017-09-11 18:44:58,492 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:44:58,505 Attempt to write file
server INFO MainThread 2017-09-11 18:44:58,507 File written :
server INFO MainThread 2017-09-11 18:44:58,507 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:58,508 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37882)> and address ('127.0.0.1', 37882)
server INFO MainThread 2017-09-11 18:44:58,508 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:58,521 Speed of data transfer is 228.21415746232114 MBPS
server INFO MainThread 2017-09-11 18:44:58,521 Closing Socket
server INFO MainThread 2017-09-11 18:44:58,551 Attempt to write file
server INFO MainThread 2017-09-11 18:44:58,553 File written :
server INFO MainThread 2017-09-11 18:44:58,554 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:58,554 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37884)> and address ('127.0.0.1', 37884)
server INFO MainThread 2017-09-11 18:44:58,554 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:58,572 Speed of data transfer is 172.2855030395969 MBPS
server INFO MainThread 2017-09-11 18:44:58,572 Closing Socket
server INFO MainThread 2017-09-11 18:44:58,603 Attempt to write file
server INFO MainThread 2017-09-11 18:44:58,607 File written :
server INFO MainThread 2017-09-11 18:44:58,607 Waiting for the connection:
client INFO MainThread 2017-09-11 18:44:59,515 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:44:59,515 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37886)> and address ('127.0.0.1', 37886)
client INFO MainThread 2017-09-11 18:44:59,515 Opening large file:
client INFO MainThread 2017-09-11 18:44:59,516 File copied into memory:
client INFO MainThread 2017-09-11 18:44:59,516 Sending large file:
server INFO MainThread 2017-09-11 18:44:59,517 Started Recieving Data:
client INFO MainThread 2017-09-11 18:44:59,518 Sending Speed: 3015.347232207045 MBPS
client INFO MainThread 2017-09-11 18:44:59,518 Closing Socket
client INFO MainThread 2017-09-11 18:44:59,518 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:59,519 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:59,519 Opening large file:
client INFO MainThread 2017-09-11 18:44:59,521 File copied into memory:
client INFO MainThread 2017-09-11 18:44:59,522 Sending large file:
client INFO MainThread 2017-09-11 18:44:59,535 Sending Speed: 230.0499844598424 MBPS
client INFO MainThread 2017-09-11 18:44:59,536 Closing Socket
server INFO MainThread 2017-09-11 18:44:59,536 Speed of data transfer is 161.2797231479108 MBPS
server INFO MainThread 2017-09-11 18:44:59,536 Closing Socket
client INFO MainThread 2017-09-11 18:44:59,536 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:44:59,536 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:44:59,536 Opening large file:
client INFO MainThread 2017-09-11 18:44:59,538 File copied into memory:
client INFO MainThread 2017-09-11 18:44:59,538 Sending large file:
client INFO MainThread 2017-09-11 18:44:59,555 Sending Speed: 183.63241539337156 MBPS
client INFO MainThread 2017-09-11 18:44:59,555 Closing Socket
client INFO MainThread 2017-09-11 18:44:59,555 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:44:59,572 Attempt to write file
server INFO MainThread 2017-09-11 18:44:59,574 File written :
server INFO MainThread 2017-09-11 18:44:59,574 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:59,575 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37888)> and address ('127.0.0.1', 37888)
server INFO MainThread 2017-09-11 18:44:59,575 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:59,593 Speed of data transfer is 162.54222750406902 MBPS
server INFO MainThread 2017-09-11 18:44:59,594 Closing Socket
server INFO MainThread 2017-09-11 18:44:59,630 Attempt to write file
server INFO MainThread 2017-09-11 18:44:59,633 File written :
server INFO MainThread 2017-09-11 18:44:59,633 Waiting for the connection:
server INFO MainThread 2017-09-11 18:44:59,633 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37890)> and address ('127.0.0.1', 37890)
server INFO MainThread 2017-09-11 18:44:59,633 Started Recieving Data:
server INFO MainThread 2017-09-11 18:44:59,646 Speed of data transfer is 230.81801339080988 MBPS
server INFO MainThread 2017-09-11 18:44:59,647 Closing Socket
server INFO MainThread 2017-09-11 18:44:59,685 Attempt to write file
server INFO MainThread 2017-09-11 18:44:59,688 File written :
server INFO MainThread 2017-09-11 18:44:59,688 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:00,571 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:45:00,571 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37892)> and address ('127.0.0.1', 37892)
client INFO MainThread 2017-09-11 18:45:00,571 Opening large file:
client INFO MainThread 2017-09-11 18:45:00,573 File copied into memory:
client INFO MainThread 2017-09-11 18:45:00,573 Sending large file:
server INFO MainThread 2017-09-11 18:45:00,574 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:00,578 Sending Speed: 670.0950047928427 MBPS
client INFO MainThread 2017-09-11 18:45:00,579 Closing Socket
client INFO MainThread 2017-09-11 18:45:00,579 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:00,580 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:00,580 Opening large file:
client INFO MainThread 2017-09-11 18:45:00,582 File copied into memory:
client INFO MainThread 2017-09-11 18:45:00,582 Sending large file:
client INFO MainThread 2017-09-11 18:45:00,595 Sending Speed: 228.79093785228554 MBPS
client INFO MainThread 2017-09-11 18:45:00,595 Closing Socket
client INFO MainThread 2017-09-11 18:45:00,596 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:00,596 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:00,596 Opening large file:
server INFO MainThread 2017-09-11 18:45:00,597 Speed of data transfer is 134.4083830032686 MBPS
server INFO MainThread 2017-09-11 18:45:00,598 Closing Socket
client INFO MainThread 2017-09-11 18:45:00,598 File copied into memory:
client INFO MainThread 2017-09-11 18:45:00,598 Sending large file:
client INFO MainThread 2017-09-11 18:45:00,611 Sending Speed: 232.10381273864203 MBPS
client INFO MainThread 2017-09-11 18:45:00,612 Closing Socket
client INFO MainThread 2017-09-11 18:45:00,612 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:45:00,646 Attempt to write file
server INFO MainThread 2017-09-11 18:45:00,649 File written :
server INFO MainThread 2017-09-11 18:45:00,650 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:00,650 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37894)> and address ('127.0.0.1', 37894)
server INFO MainThread 2017-09-11 18:45:00,650 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:00,666 Speed of data transfer is 190.35799219388218 MBPS
server INFO MainThread 2017-09-11 18:45:00,666 Closing Socket
server INFO MainThread 2017-09-11 18:45:00,710 Attempt to write file
server INFO MainThread 2017-09-11 18:45:00,713 File written :
server INFO MainThread 2017-09-11 18:45:00,714 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:00,714 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37896)> and address ('127.0.0.1', 37896)
server INFO MainThread 2017-09-11 18:45:00,714 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:00,732 Speed of data transfer is 168.24725561245637 MBPS
server INFO MainThread 2017-09-11 18:45:00,732 Closing Socket
server INFO MainThread 2017-09-11 18:45:00,781 Attempt to write file
server INFO MainThread 2017-09-11 18:45:00,784 File written :
server INFO MainThread 2017-09-11 18:45:00,784 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:01,628 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:45:01,628 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37898)> and address ('127.0.0.1', 37898)
client INFO MainThread 2017-09-11 18:45:01,629 Opening large file:
client INFO MainThread 2017-09-11 18:45:01,632 File copied into memory:
client INFO MainThread 2017-09-11 18:45:01,633 Sending large file:
server INFO MainThread 2017-09-11 18:45:01,634 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:01,638 Sending Speed: 696.812714586333 MBPS
client INFO MainThread 2017-09-11 18:45:01,639 Closing Socket
client INFO MainThread 2017-09-11 18:45:01,640 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:01,642 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:01,643 Opening large file:
client INFO MainThread 2017-09-11 18:45:01,648 File copied into memory:
client INFO MainThread 2017-09-11 18:45:01,648 Sending large file:
server INFO MainThread 2017-09-11 18:45:01,664 Speed of data transfer is 102.56801434626671 MBPS
server INFO MainThread 2017-09-11 18:45:01,664 Closing Socket
client INFO MainThread 2017-09-11 18:45:01,667 Sending Speed: 163.14495384296234 MBPS
client INFO MainThread 2017-09-11 18:45:01,668 Closing Socket
client INFO MainThread 2017-09-11 18:45:01,668 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:01,668 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:01,669 Opening large file:
client INFO MainThread 2017-09-11 18:45:01,671 File copied into memory:
client INFO MainThread 2017-09-11 18:45:01,671 Sending large file:
client INFO MainThread 2017-09-11 18:45:01,687 Sending Speed: 195.16159751841798 MBPS
client INFO MainThread 2017-09-11 18:45:01,687 Closing Socket
client INFO MainThread 2017-09-11 18:45:01,687 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:45:01,714 Attempt to write file
server INFO MainThread 2017-09-11 18:45:01,717 File written :
server INFO MainThread 2017-09-11 18:45:01,717 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:01,717 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37900)> and address ('127.0.0.1', 37900)
server INFO MainThread 2017-09-11 18:45:01,718 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:01,731 Speed of data transfer is 222.02890265205653 MBPS
server INFO MainThread 2017-09-11 18:45:01,731 Closing Socket
server INFO MainThread 2017-09-11 18:45:01,785 Attempt to write file
server INFO MainThread 2017-09-11 18:45:01,787 File written :
server INFO MainThread 2017-09-11 18:45:01,788 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:01,788 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37902)> and address ('127.0.0.1', 37902)
server INFO MainThread 2017-09-11 18:45:01,788 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:01,804 Speed of data transfer is 189.8868801496997 MBPS
server INFO MainThread 2017-09-11 18:45:01,804 Closing Socket
server INFO MainThread 2017-09-11 18:45:01,852 Attempt to write file
server INFO MainThread 2017-09-11 18:45:01,855 File written :
server INFO MainThread 2017-09-11 18:45:01,855 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:02,715 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:45:02,716 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37904)> and address ('127.0.0.1', 37904)
client INFO MainThread 2017-09-11 18:45:02,716 Opening large file:
client INFO MainThread 2017-09-11 18:45:02,719 File copied into memory:
client INFO MainThread 2017-09-11 18:45:02,719 Sending large file:
server INFO MainThread 2017-09-11 18:45:02,720 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:02,723 Sending Speed: 959.2928261035298 MBPS
client INFO MainThread 2017-09-11 18:45:02,724 Closing Socket
client INFO MainThread 2017-09-11 18:45:02,725 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:02,726 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:02,727 Opening large file:
client INFO MainThread 2017-09-11 18:45:02,730 File copied into memory:
client INFO MainThread 2017-09-11 18:45:02,731 Sending large file:
client INFO MainThread 2017-09-11 18:45:02,747 Sending Speed: 191.38582749022768 MBPS
client INFO MainThread 2017-09-11 18:45:02,748 Closing Socket
client INFO MainThread 2017-09-11 18:45:02,748 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:02,749 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:02,749 Opening large file:
client INFO MainThread 2017-09-11 18:45:02,752 File copied into memory:
client INFO MainThread 2017-09-11 18:45:02,752 Sending large file:
server INFO MainThread 2017-09-11 18:45:02,755 Speed of data transfer is 88.28719373579186 MBPS
server INFO MainThread 2017-09-11 18:45:02,755 Closing Socket
client INFO MainThread 2017-09-11 18:45:02,767 Sending Speed: 201.6158049061864 MBPS
client INFO MainThread 2017-09-11 18:45:02,767 Closing Socket
client INFO MainThread 2017-09-11 18:45:02,768 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:45:02,811 Attempt to write file
server INFO MainThread 2017-09-11 18:45:02,813 File written :
server INFO MainThread 2017-09-11 18:45:02,814 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:02,814 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37908)> and address ('127.0.0.1', 37908)
server INFO MainThread 2017-09-11 18:45:02,814 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:02,831 Speed of data transfer is 177.16109593669924 MBPS
server INFO MainThread 2017-09-11 18:45:02,831 Closing Socket
server INFO MainThread 2017-09-11 18:45:02,884 Attempt to write file
server INFO MainThread 2017-09-11 18:45:02,886 File written :
server INFO MainThread 2017-09-11 18:45:02,886 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:02,887 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37910)> and address ('127.0.0.1', 37910)
server INFO MainThread 2017-09-11 18:45:02,887 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:02,904 Speed of data transfer is 178.8659966737267 MBPS
server INFO MainThread 2017-09-11 18:45:02,904 Closing Socket
server INFO MainThread 2017-09-11 18:45:02,959 Attempt to write file
server INFO MainThread 2017-09-11 18:45:02,961 File written :
server INFO MainThread 2017-09-11 18:45:02,961 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:03,771 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:45:03,771 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37912)> and address ('127.0.0.1', 37912)
client INFO MainThread 2017-09-11 18:45:03,773 Opening large file:
client INFO MainThread 2017-09-11 18:45:03,776 File copied into memory:
client INFO MainThread 2017-09-11 18:45:03,777 Sending large file:
server INFO MainThread 2017-09-11 18:45:03,778 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:03,780 Sending Speed: 1129.334410339257 MBPS
client INFO MainThread 2017-09-11 18:45:03,781 Closing Socket
client INFO MainThread 2017-09-11 18:45:03,782 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:03,783 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:03,784 Opening large file:
client INFO MainThread 2017-09-11 18:45:03,789 File copied into memory:
client INFO MainThread 2017-09-11 18:45:03,790 Sending large file:
client INFO MainThread 2017-09-11 18:45:03,808 Sending Speed: 183.68334695784188 MBPS
client INFO MainThread 2017-09-11 18:45:03,809 Closing Socket
client INFO MainThread 2017-09-11 18:45:03,810 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:03,811 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:03,812 Opening large file:
client INFO MainThread 2017-09-11 18:45:03,816 File copied into memory:
client INFO MainThread 2017-09-11 18:45:03,817 Sending large file:
server INFO MainThread 2017-09-11 18:45:03,818 Speed of data transfer is 76.97039986787294 MBPS
server INFO MainThread 2017-09-11 18:45:03,818 Closing Socket
client INFO MainThread 2017-09-11 18:45:03,831 Sending Speed: 218.59984017233592 MBPS
client INFO MainThread 2017-09-11 18:45:03,832 Closing Socket
client INFO MainThread 2017-09-11 18:45:03,833 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:45:03,901 Attempt to write file
server INFO MainThread 2017-09-11 18:45:03,904 File written :
server INFO MainThread 2017-09-11 18:45:03,904 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:03,904 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37914)> and address ('127.0.0.1', 37914)
server INFO MainThread 2017-09-11 18:45:03,904 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:03,919 Speed of data transfer is 211.64335452618832 MBPS
server INFO MainThread 2017-09-11 18:45:03,919 Closing Socket
server INFO MainThread 2017-09-11 18:45:03,981 Attempt to write file
server INFO MainThread 2017-09-11 18:45:03,984 File written :
server INFO MainThread 2017-09-11 18:45:03,984 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:03,985 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37916)> and address ('127.0.0.1', 37916)
server INFO MainThread 2017-09-11 18:45:03,985 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:04,000 Speed of data transfer is 197.35941151559828 MBPS
server INFO MainThread 2017-09-11 18:45:04,000 Closing Socket
server INFO MainThread 2017-09-11 18:45:04,064 Attempt to write file
server INFO MainThread 2017-09-11 18:45:04,066 File written :
server INFO MainThread 2017-09-11 18:45:04,067 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:04,859 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:45:04,859 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37918)> and address ('127.0.0.1', 37918)
client INFO MainThread 2017-09-11 18:45:04,860 Opening large file:
client INFO MainThread 2017-09-11 18:45:04,863 File copied into memory:
client INFO MainThread 2017-09-11 18:45:04,864 Sending large file:
server INFO MainThread 2017-09-11 18:45:04,864 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:04,865 Sending Speed: 2345.8322147651006 MBPS
client INFO MainThread 2017-09-11 18:45:04,866 Closing Socket
client INFO MainThread 2017-09-11 18:45:04,866 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:04,867 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:04,867 Opening large file:
client INFO MainThread 2017-09-11 18:45:04,870 File copied into memory:
client INFO MainThread 2017-09-11 18:45:04,871 Sending large file:
server INFO MainThread 2017-09-11 18:45:04,884 Speed of data transfer is 153.7686695750999 MBPS
server INFO MainThread 2017-09-11 18:45:04,884 Closing Socket
client INFO MainThread 2017-09-11 18:45:04,887 Sending Speed: 186.04337990685295 MBPS
client INFO MainThread 2017-09-11 18:45:04,888 Closing Socket
client INFO MainThread 2017-09-11 18:45:04,888 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:04,888 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:04,889 Opening large file:
client INFO MainThread 2017-09-11 18:45:04,892 File copied into memory:
client INFO MainThread 2017-09-11 18:45:04,892 Sending large file:
client INFO MainThread 2017-09-11 18:45:04,907 Sending Speed: 207.62043362043363 MBPS
client INFO MainThread 2017-09-11 18:45:04,907 Closing Socket
client INFO MainThread 2017-09-11 18:45:04,907 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:45:04,950 Attempt to write file
server INFO MainThread 2017-09-11 18:45:04,952 File written :
server INFO MainThread 2017-09-11 18:45:04,952 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:04,952 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37920)> and address ('127.0.0.1', 37920)
server INFO MainThread 2017-09-11 18:45:04,953 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:04,967 Speed of data transfer is 202.57983707376758 MBPS
server INFO MainThread 2017-09-11 18:45:04,968 Closing Socket
server INFO MainThread 2017-09-11 18:45:05,031 Attempt to write file
server INFO MainThread 2017-09-11 18:45:05,034 File written :
server INFO MainThread 2017-09-11 18:45:05,034 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:05,034 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37922)> and address ('127.0.0.1', 37922)
server INFO MainThread 2017-09-11 18:45:05,035 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:05,051 Speed of data transfer is 188.2111403613737 MBPS
server INFO MainThread 2017-09-11 18:45:05,051 Closing Socket
server INFO MainThread 2017-09-11 18:45:05,116 Attempt to write file
server INFO MainThread 2017-09-11 18:45:05,118 File written :
server INFO MainThread 2017-09-11 18:45:05,118 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:05,915 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:45:05,915 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37924)> and address ('127.0.0.1', 37924)
client INFO MainThread 2017-09-11 18:45:05,916 Opening large file:
client INFO MainThread 2017-09-11 18:45:05,919 File copied into memory:
client INFO MainThread 2017-09-11 18:45:05,919 Sending large file:
server INFO MainThread 2017-09-11 18:45:05,920 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:05,922 Sending Speed: 1540.3408005875872 MBPS
client INFO MainThread 2017-09-11 18:45:05,923 Closing Socket
client INFO MainThread 2017-09-11 18:45:05,924 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:05,925 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:05,926 Opening large file:
client INFO MainThread 2017-09-11 18:45:05,932 File copied into memory:
client INFO MainThread 2017-09-11 18:45:05,932 Sending large file:
client INFO MainThread 2017-09-11 18:45:05,947 Sending Speed: 203.35575415744137 MBPS
client INFO MainThread 2017-09-11 18:45:05,947 Closing Socket
client INFO MainThread 2017-09-11 18:45:05,948 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:05,948 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:05,948 Opening large file:
client INFO MainThread 2017-09-11 18:45:05,951 File copied into memory:
client INFO MainThread 2017-09-11 18:45:05,951 Sending large file:
server INFO MainThread 2017-09-11 18:45:05,952 Speed of data transfer is 96.44026825062272 MBPS
server INFO MainThread 2017-09-11 18:45:05,953 Closing Socket
client INFO MainThread 2017-09-11 18:45:05,967 Sending Speed: 198.39562310797174 MBPS
client INFO MainThread 2017-09-11 18:45:05,968 Closing Socket
client INFO MainThread 2017-09-11 18:45:05,968 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:45:06,024 Attempt to write file
server INFO MainThread 2017-09-11 18:45:06,027 File written :
server INFO MainThread 2017-09-11 18:45:06,027 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:06,027 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37926)> and address ('127.0.0.1', 37926)
server INFO MainThread 2017-09-11 18:45:06,027 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:06,041 Speed of data transfer is 220.6622474747475 MBPS
server INFO MainThread 2017-09-11 18:45:06,041 Closing Socket
server INFO MainThread 2017-09-11 18:45:06,120 Attempt to write file
server INFO MainThread 2017-09-11 18:45:06,123 File written :
server INFO MainThread 2017-09-11 18:45:06,123 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:06,124 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37928)> and address ('127.0.0.1', 37928)
server INFO MainThread 2017-09-11 18:45:06,124 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:06,143 Speed of data transfer is 163.92069095788335 MBPS
server INFO MainThread 2017-09-11 18:45:06,143 Closing Socket
server INFO MainThread 2017-09-11 18:45:06,225 Attempt to write file
server INFO MainThread 2017-09-11 18:45:06,227 File written :
server INFO MainThread 2017-09-11 18:45:06,227 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:06,971 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:45:06,972 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37930)> and address ('127.0.0.1', 37930)
client INFO MainThread 2017-09-11 18:45:06,972 Opening large file:
client INFO MainThread 2017-09-11 18:45:06,975 File copied into memory:
client INFO MainThread 2017-09-11 18:45:06,976 Sending large file:
server INFO MainThread 2017-09-11 18:45:06,976 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:06,978 Sending Speed: 1558.6577480490523 MBPS
client INFO MainThread 2017-09-11 18:45:06,979 Closing Socket
client INFO MainThread 2017-09-11 18:45:06,980 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:06,981 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:06,981 Opening large file:
client INFO MainThread 2017-09-11 18:45:06,985 File copied into memory:
client INFO MainThread 2017-09-11 18:45:06,985 Sending large file:
server INFO MainThread 2017-09-11 18:45:07,001 Speed of data transfer is 126.26985910970176 MBPS
server INFO MainThread 2017-09-11 18:45:07,001 Closing Socket
client INFO MainThread 2017-09-11 18:45:07,003 Sending Speed: 172.12289173107175 MBPS
client INFO MainThread 2017-09-11 18:45:07,004 Closing Socket
client INFO MainThread 2017-09-11 18:45:07,004 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:07,005 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:07,005 Opening large file:
client INFO MainThread 2017-09-11 18:45:07,007 File copied into memory:
client INFO MainThread 2017-09-11 18:45:07,008 Sending large file:
client INFO MainThread 2017-09-11 18:45:07,023 Sending Speed: 198.18314118314117 MBPS
client INFO MainThread 2017-09-11 18:45:07,023 Closing Socket
client INFO MainThread 2017-09-11 18:45:07,024 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:45:07,083 Attempt to write file
server INFO MainThread 2017-09-11 18:45:07,086 File written :
server INFO MainThread 2017-09-11 18:45:07,086 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:07,086 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37932)> and address ('127.0.0.1', 37932)
server INFO MainThread 2017-09-11 18:45:07,087 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:07,101 Speed of data transfer is 205.69604237163455 MBPS
server INFO MainThread 2017-09-11 18:45:07,102 Closing Socket
server INFO MainThread 2017-09-11 18:45:07,177 Attempt to write file
server INFO MainThread 2017-09-11 18:45:07,180 File written :
server INFO MainThread 2017-09-11 18:45:07,180 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:07,180 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37934)> and address ('127.0.0.1', 37934)
server INFO MainThread 2017-09-11 18:45:07,181 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:07,195 Speed of data transfer is 205.33687989556137 MBPS
server INFO MainThread 2017-09-11 18:45:07,196 Closing Socket
server INFO MainThread 2017-09-11 18:45:07,275 Attempt to write file
server INFO MainThread 2017-09-11 18:45:07,277 File written :
server INFO MainThread 2017-09-11 18:45:07,277 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:08,031 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:45:08,031 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37936)> and address ('127.0.0.1', 37936)
client INFO MainThread 2017-09-11 18:45:08,032 Opening large file:
client INFO MainThread 2017-09-11 18:45:08,034 File copied into memory:
client INFO MainThread 2017-09-11 18:45:08,035 Sending large file:
server INFO MainThread 2017-09-11 18:45:08,036 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:08,037 Sending Speed: 1764.0605635777372 MBPS
client INFO MainThread 2017-09-11 18:45:08,037 Closing Socket
client INFO MainThread 2017-09-11 18:45:08,038 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:08,038 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:08,039 Opening large file:
client INFO MainThread 2017-09-11 18:45:08,042 File copied into memory:
client INFO MainThread 2017-09-11 18:45:08,043 Sending large file:
client INFO MainThread 2017-09-11 18:45:08,059 Sending Speed: 183.38887107587374 MBPS
client INFO MainThread 2017-09-11 18:45:08,060 Closing Socket
client INFO MainThread 2017-09-11 18:45:08,061 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:08,062 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:08,063 Opening large file:
client INFO MainThread 2017-09-11 18:45:08,067 File copied into memory:
client INFO MainThread 2017-09-11 18:45:08,069 Sending large file:
server INFO MainThread 2017-09-11 18:45:08,073 Speed of data transfer is 82.29375294302308 MBPS
server INFO MainThread 2017-09-11 18:45:08,074 Closing Socket
client INFO MainThread 2017-09-11 18:45:08,084 Sending Speed: 204.38300360588636 MBPS
client INFO MainThread 2017-09-11 18:45:08,086 Closing Socket
client INFO MainThread 2017-09-11 18:45:08,087 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:45:08,162 Attempt to write file
server INFO MainThread 2017-09-11 18:45:08,165 File written :
server INFO MainThread 2017-09-11 18:45:08,165 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:08,166 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37938)> and address ('127.0.0.1', 37938)
server INFO MainThread 2017-09-11 18:45:08,166 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:08,178 Speed of data transfer is 239.34422612367564 MBPS
server INFO MainThread 2017-09-11 18:45:08,179 Closing Socket
server INFO MainThread 2017-09-11 18:45:08,261 Attempt to write file
server INFO MainThread 2017-09-11 18:45:08,263 File written :
server INFO MainThread 2017-09-11 18:45:08,263 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:08,264 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37940)> and address ('127.0.0.1', 37940)
server INFO MainThread 2017-09-11 18:45:08,264 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:08,281 Speed of data transfer is 176.88465917876772 MBPS
server INFO MainThread 2017-09-11 18:45:08,281 Closing Socket
server INFO MainThread 2017-09-11 18:45:08,363 Attempt to write file
server INFO MainThread 2017-09-11 18:45:08,366 File written :
server INFO MainThread 2017-09-11 18:45:08,366 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:09,115 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:45:09,116 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37942)> and address ('127.0.0.1', 37942)
client INFO MainThread 2017-09-11 18:45:09,116 Opening large file:
client INFO MainThread 2017-09-11 18:45:09,118 File copied into memory:
client INFO MainThread 2017-09-11 18:45:09,118 Sending large file:
server INFO MainThread 2017-09-11 18:45:09,119 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:09,121 Sending Speed: 1269.9882922890592 MBPS
client INFO MainThread 2017-09-11 18:45:09,122 Closing Socket
client INFO MainThread 2017-09-11 18:45:09,122 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:09,123 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:09,124 Opening large file:
client INFO MainThread 2017-09-11 18:45:09,127 File copied into memory:
client INFO MainThread 2017-09-11 18:45:09,128 Sending large file:
client INFO MainThread 2017-09-11 18:45:09,143 Sending Speed: 206.36060089215428 MBPS
client INFO MainThread 2017-09-11 18:45:09,144 Closing Socket
client INFO MainThread 2017-09-11 18:45:09,146 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:09,147 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:09,148 Opening large file:
client INFO MainThread 2017-09-11 18:45:09,151 File copied into memory:
client INFO MainThread 2017-09-11 18:45:09,152 Sending large file:
server INFO MainThread 2017-09-11 18:45:09,153 Speed of data transfer is 89.10810064371756 MBPS
server INFO MainThread 2017-09-11 18:45:09,154 Closing Socket
client INFO MainThread 2017-09-11 18:45:09,167 Sending Speed: 205.98225510738607 MBPS
client INFO MainThread 2017-09-11 18:45:09,168 Closing Socket
client INFO MainThread 2017-09-11 18:45:09,168 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:45:09,255 Attempt to write file
server INFO MainThread 2017-09-11 18:45:09,257 File written :
server INFO MainThread 2017-09-11 18:45:09,258 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:09,258 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37944)> and address ('127.0.0.1', 37944)
server INFO MainThread 2017-09-11 18:45:09,258 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:09,275 Speed of data transfer is 186.20856825749166 MBPS
server INFO MainThread 2017-09-11 18:45:09,275 Closing Socket
server INFO MainThread 2017-09-11 18:45:09,363 Attempt to write file
server INFO MainThread 2017-09-11 18:45:09,366 File written :
server INFO MainThread 2017-09-11 18:45:09,366 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:09,367 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37946)> and address ('127.0.0.1', 37946)
server INFO MainThread 2017-09-11 18:45:09,367 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:09,385 Speed of data transfer is 173.78214813484885 MBPS
server INFO MainThread 2017-09-11 18:45:09,385 Closing Socket
server INFO MainThread 2017-09-11 18:45:09,471 Attempt to write file
server INFO MainThread 2017-09-11 18:45:09,474 File written :
server INFO MainThread 2017-09-11 18:45:09,475 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:10,171 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:10,172 Opening large file:
server INFO MainThread 2017-09-11 18:45:10,171 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37948)> and address ('127.0.0.1', 37948)
client INFO MainThread 2017-09-11 18:45:10,174 File copied into memory:
client INFO MainThread 2017-09-11 18:45:10,174 Sending large file:
server INFO MainThread 2017-09-11 18:45:10,175 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:10,179 Sending Speed: 683.266941789748 MBPS
client INFO MainThread 2017-09-11 18:45:10,180 Closing Socket
client INFO MainThread 2017-09-11 18:45:10,180 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:10,181 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:10,181 Opening large file:
client INFO MainThread 2017-09-11 18:45:10,184 File copied into memory:
client INFO MainThread 2017-09-11 18:45:10,184 Sending large file:
client INFO MainThread 2017-09-11 18:45:10,201 Sending Speed: 207.0771661318193 MBPS
client INFO MainThread 2017-09-11 18:45:10,201 Closing Socket
client INFO MainThread 2017-09-11 18:45:10,202 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:10,203 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:10,203 Opening large file:
server INFO MainThread 2017-09-11 18:45:10,203 Speed of data transfer is 108.77740605306154 MBPS
server INFO MainThread 2017-09-11 18:45:10,203 Closing Socket
client INFO MainThread 2017-09-11 18:45:10,205 File copied into memory:
client INFO MainThread 2017-09-11 18:45:10,205 Sending large file:
client INFO MainThread 2017-09-11 18:45:10,219 Sending Speed: 225.2724636124389 MBPS
client INFO MainThread 2017-09-11 18:45:10,220 Closing Socket
client INFO MainThread 2017-09-11 18:45:10,220 connecting the Socket to server on port:
server INFO MainThread 2017-09-11 18:45:10,297 Attempt to write file
server INFO MainThread 2017-09-11 18:45:10,300 File written :
server INFO MainThread 2017-09-11 18:45:10,300 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:10,300 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37950)> and address ('127.0.0.1', 37950)
server INFO MainThread 2017-09-11 18:45:10,300 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:10,314 Speed of data transfer is 213.30085435313262 MBPS
server INFO MainThread 2017-09-11 18:45:10,314 Closing Socket
server INFO MainThread 2017-09-11 18:45:10,404 Attempt to write file
server INFO MainThread 2017-09-11 18:45:10,407 File written :
server INFO MainThread 2017-09-11 18:45:10,407 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:10,407 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37952)> and address ('127.0.0.1', 37952)
server INFO MainThread 2017-09-11 18:45:10,407 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:10,420 Speed of data transfer is 230.91119960361883 MBPS
server INFO MainThread 2017-09-11 18:45:10,421 Closing Socket
server INFO MainThread 2017-09-11 18:45:10,510 Attempt to write file
server INFO MainThread 2017-09-11 18:45:10,513 File written :
server INFO MainThread 2017-09-11 18:45:10,513 Waiting for the connection:
client INFO MainThread 2017-09-11 18:45:11,227 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:45:11,227 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37954)> and address ('127.0.0.1', 37954)
client INFO MainThread 2017-09-11 18:45:11,228 Opening large file:
client INFO MainThread 2017-09-11 18:45:11,230 File copied into memory:
client INFO MainThread 2017-09-11 18:45:11,230 Sending large file:
server INFO MainThread 2017-09-11 18:45:11,230 Started Recieving Data:
client INFO MainThread 2017-09-11 18:45:11,232 Sending Speed: 1923.4246407826354 MBPS
client INFO MainThread 2017-09-11 18:45:11,232 Closing Socket
client INFO MainThread 2017-09-11 18:45:11,233 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:11,234 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:11,234 Opening large file:
client INFO MainThread 2017-09-11 18:45:11,237 File copied into memory:
client INFO MainThread 2017-09-11 18:45:11,237 Sending large file:
client INFO MainThread 2017-09-11 18:45:11,251 Sending Speed: 214.28524718584492 MBPS
client INFO MainThread 2017-09-11 18:45:11,252 Closing Socket
client INFO MainThread 2017-09-11 18:45:11,252 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:45:11,253 The Client Socket has been connected to server: localhost on port: 10001
client INFO MainThread 2017-09-11 18:45:11,253 Opening large file:
client INFO MainThread 2017-09-11 18:45:11,255 File copied into memory:
client INFO MainThread 2017-09-11 18:45:11,255 Sending large file:
server INFO MainThread 2017-09-11 18:45:11,256 Speed of data transfer is 117.41966910220879 MBPS
server INFO MainThread 2017-09-11 18:45:11,257 Closing Socket
client INFO MainThread 2017-09-11 18:45:11,257 Sending Speed: 2249.1061703722207 MBPS
client INFO MainThread 2017-09-11 18:45:11,257 Closing Socket
client INFO MainThread 2017-09-11 18:45:11,257 Splited Files Deleted
server INFO MainThread 2017-09-11 18:45:11,363 Attempt to write file
server INFO MainThread 2017-09-11 18:45:11,366 File written :
server INFO MainThread 2017-09-11 18:45:11,366 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:11,366 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37956)> and address ('127.0.0.1', 37956)
server INFO MainThread 2017-09-11 18:45:11,366 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:11,384 Speed of data transfer is 173.44439543474664 MBPS
server INFO MainThread 2017-09-11 18:45:11,384 Closing Socket
client INFO MainThread 2017-09-11 18:45:11,435 Changing the Directory:
client INFO MainThread 2017-09-11 18:45:11,436 Directory Changed:
client INFO MainThread 2017-09-11 18:45:11,436 Byte Converted File Deleted
server INFO MainThread 2017-09-11 18:45:11,488 Attempt to write file
server INFO MainThread 2017-09-11 18:45:11,491 File written :
server INFO MainThread 2017-09-11 18:45:11,491 Waiting for the connection:
server INFO MainThread 2017-09-11 18:45:11,491 Connection Recieved from connection <socket.socket fd=5, family=AddressFamily.AF_INET, type=SocketKind.SOCK_STREAM, proto=0, laddr=('127.0.0.1', 10001), raddr=('127.0.0.1', 37958)> and address ('127.0.0.1', 37958)
server INFO MainThread 2017-09-11 18:45:11,491 Started Recieving Data:
server INFO MainThread 2017-09-11 18:45:11,502 Speed of data transfer is 200.35989762990988 MBPS
server INFO MainThread 2017-09-11 18:45:11,502 Closing Socket
server INFO MainThread 2017-09-11 18:45:11,603 Attempt to write file
server INFO MainThread 2017-09-11 18:45:11,605 File written :
server INFO MainThread 2017-09-11 18:45:11,605 Average Speed of data transfer is 8.509162803938683 MBPS
server INFO MainThread 2017-09-11 18:45:11,605 Total Data Recieved: 176.14923191070557
server INFO MainThread 2017-09-11 18:49:52,657 Loggers set, imports completed
server INFO MainThread 2017-09-11 18:49:52,657 Initalizing Attributes
server INFO MainThread 2017-09-11 18:49:52,657 Checking if host and port are available:
server INFO MainThread 2017-09-11 18:49:52,657 Changing the Directory:
server INFO MainThread 2017-09-11 18:49:52,657 Directory Changed:
server INFO MainThread 2017-09-11 18:49:52,658 Making Temprorary s_split Directory:
server INFO MainThread 2017-09-11 18:49:52,660 Directory made succesfully
server INFO MainThread 2017-09-11 18:49:52,660 Connecting...
server INFO MainThread 2017-09-11 18:49:52,660 Binding the Socket to host and Port:
server INFO MainThread 2017-09-11 18:49:52,661 The Server Socket is now being binded to host: localhost and port: 10001
server INFO MainThread 2017-09-11 18:49:52,661 Server socket is listing for 1 connections
client INFO MainThread 2017-09-11 18:49:53,695 Loggers set, imports completed
client INFO MainThread 2017-09-11 18:49:53,696 Changing the Directory:
client INFO MainThread 2017-09-11 18:49:53,696 Directory Changed:
client INFO MainThread 2017-09-11 18:49:53,696 Making Temprorary c_split Directory:
client INFO MainThread 2017-09-11 18:49:53,698 Directory made succesfully
client INFO MainThread 2017-09-11 18:49:53,698 Opening File
client INFO MainThread 2017-09-11 18:49:53,698 Reading File
client INFO MainThread 2017-09-11 18:49:56,392 Calculating Size of Stuff
client INFO MainThread 2017-09-11 18:49:56,392 File read with the size of: 176.1465139389038 MB
client INFO MainThread 2017-09-11 18:49:56,393 Closing File
client INFO MainThread 2017-09-11 18:49:56,487 Calculating Size of Stuff
client INFO MainThread 2017-09-11 18:49:56,487 Cpickle has Serialized: 176.1465139389038 MB
client INFO MainThread 2017-09-11 18:49:56,488 Attempt to write file
client INFO MainThread 2017-09-11 18:49:56,604 File written :
client INFO MainThread 2017-09-11 18:49:56,604 Attempting to Find Check Sum of stuff:
client INFO MainThread 2017-09-11 18:49:57,492 Check Sum Found
client INFO MainThread 2017-09-11 18:49:57,492 Spliting the Files into 3m parts:
client INFO MainThread 2017-09-11 18:49:59,121 Changing Directory:
client INFO MainThread 2017-09-11 18:49:59,124 Finding CRC for each splited file:
client INFO MainThread 2017-09-11 18:50:00,138 Files split Succesfully
client INFO MainThread 2017-09-11 18:50:00,138 Chksum being written
client INFO MainThread 2017-09-11 18:50:00,139 Calculating Size of Stuff
client INFO MainThread 2017-09-11 18:50:00,139 Cpickle has Serialized: 0.00217437744140625 MB
client INFO MainThread 2017-09-11 18:50:00,139 Attempt to write file
client INFO MainThread 2017-09-11 18:50:00,139 File written :
client INFO MainThread 2017-09-11 18:50:00,139 Attempting to Find Check Sum of stuff:
client INFO MainThread 2017-09-11 18:50:00,465 Check Sum Found
client INFO MainThread 2017-09-11 18:50:00,466 Chksum being written
client INFO MainThread 2017-09-11 18:50:00,467 Changing Directory:
client INFO MainThread 2017-09-11 18:50:00,467 Entering Directory to count number of files
client INFO MainThread 2017-09-11 18:50:00,468 Files calulcated.
Exit Directory to count number of files
client INFO MainThread 2017-09-11 18:50:00,468 Connecting...
client INFO MainThread 2017-09-11 18:50:00,468 connecting the Socket to server on port:
client INFO MainThread 2017-09-11 18:50:00,469 The Client Socket has been connected to server: localhost on port: 10001
server INFO MainThread 2017-09-11 18:50:00,470 Connection recieved.
server INFO MainThread 2017-09-11 18:50:00,470 Waiting for handshake reply.
client INFO MainThread 2017-09-11 18:50:02,243 Sending CRC's and number of files to server along with authentication
client INFO MainThread 2017-09-11 18:50:02,243 CRC and Number of files sent.
server INFO MainThread 2017-09-11 18:50:02,244 Handshake reply recieved.
client INFO MainThread 2017-09-11 18:50:02,244 Waiting for handshake reply.
server INFO MainThread 2017-09-11 18:50:02,244 Decoding data for CRC and File Numbers
server INFO MainThread 2017-09-11 18:50:02,245 Data decoded for CRC and File Numbers
server INFO MainThread 2017-09-11 18:50:02,245 Sending handshake back
server INFO MainThread 2017-09-11 18:50:02,246 Handshake back sent
client INFO MainThread 2017-09-11 18:50:02,246 Decoding data for CRC and File Numbers
client INFO MainThread 2017-09-11 18:50:02,247 Data decoded for CRC and File Numbers
server INFO MainThread 2017-09-11 18:50:02,247 Waiting for the connection:
client INFO MainThread 2017-09-11 18:50:02,247 Handshake reply recieved.
client INFO MainThread 2017-09-11 18:50:02,247 Handshake Complete.
client INFO MainThread 2017-09-11 18:50:02,248 Changing the Directory:
client INFO MainThread 2017-09-11 18:50:02,248 Directory Changed:
client INFO MainThread 2017-09-11 18:50:21,817 Loggers set, imports completed
client INFO MainThread 2017-09-11 18:50:21,817 Changing the Directory:
client INFO MainThread 2017-09-11 18:50:21,818 Directory Changed:
client INFO MainThread 2017-09-11 18:50:21,818 Making Temprorary c_split Directory:
client INFO MainThread 2017-09-11 18:50:21,820 Directory made succesfully
client INFO MainThread 2017-09-11 18:50:21,821 Opening File
client INFO MainThread 2017-09-11 18:50:21,821 Reading File
client INFO MainThread 2017-09-11 18:50:21,932 Calculating Size of Stuff
client INFO MainThread 2017-09-11 18:50:21,932 File read with the size of: 176.1465139389038 MB
client INFO MainThread 2017-09-11 18:50:21,933 Closing File
client INFO MainThread 2017-09-11 18:50:22,056 Calculating Size of Stuff
client INFO MainThread 2017-09-11 18:50:22,056 Cpickle has Serialized: 176.1465139389038 MB
client INFO MainThread 2017-09-11 18:50:22,067 Attempt to write file
client INFO MainThread 2017-09-11 18:50:23,116 File written :
client INFO MainThread 2017-09-11 18:50:23,116 Attempting to Find Check Sum of stuff:
client INFO MainThread 2017-09-11 18:50:24,030 Check Sum Found
client INFO MainThread 2017-09-11 18:50:24,031 Spliting the Files into 3m parts:
server INFO MainThread 2017-09-11 18:50:24,552 Loggers set, imports completed
server INFO MainThread 2017-09-11 18:50:24,552 Initalizing Attributes
server INFO MainThread 2017-09-11 18:50:24,552 Checking if host and port are available:
server INFO MainThread 2017-09-11 18:50:24,552 Changing the Directory:
server INFO MainThread 2017-09-11 18:50:24,552 Directory Changed:
server INFO MainThread 2017-09-11 18:50:24,553 Making Temprorary s_split Directory:
server INFO MainThread 2017-09-11 18:50:24,554 Directory made succesfully
server INFO MainThread 2017-09-11 18:50:24,555 Connecting...
server INFO MainThread 2017-09-11 18:50:24,555 Binding the Socket to host and Port:
server INFO MainThread 2017-09-11 18:50:24,555 The Server Socket is now being binded to host: localhost and port: 10001
server INFO MainThread 2017-09-11 18:50:24,556 Server socket is listing for 1 connections