parent
1b3e8fa2cf
commit
20d40f0868
@ -172,14 +172,14 @@ def serve(remoteAddr, localAddr, remotePort, localPort, password, filename, comm
|
|||||||
sys.stderr.flush()
|
sys.stderr.flush()
|
||||||
offset = 0
|
offset = 0
|
||||||
while True:
|
while True:
|
||||||
chunk = f.read(1460)
|
chunk = f.read(1024)
|
||||||
if not chunk: break
|
if not chunk: break
|
||||||
offset += len(chunk)
|
offset += len(chunk)
|
||||||
update_progress(offset/float(content_size))
|
update_progress(offset/float(content_size))
|
||||||
connection.settimeout(10)
|
connection.settimeout(10)
|
||||||
try:
|
try:
|
||||||
connection.sendall(chunk)
|
connection.sendall(chunk)
|
||||||
res = connection.recv(5)
|
res = connection.recv(10)
|
||||||
except:
|
except:
|
||||||
sys.stderr.write('\n')
|
sys.stderr.write('\n')
|
||||||
logging.error('Error Uploading')
|
logging.error('Error Uploading')
|
||||||
|
Loading…
Reference in New Issue
Block a user