Process message every time we are able to
This commit is contained in:
parent
30a49e1661
commit
5095849884
|
@ -69,7 +69,7 @@ class Connection(threading.Thread):
|
||||||
data = self.s.recv(4096)
|
data = self.s.recv(4096)
|
||||||
self.buffer_receive += data
|
self.buffer_receive += data
|
||||||
logging.debug('Received {} bytes from {}:{}'.format(len(data), self.host, self.port))
|
logging.debug('Received {} bytes from {}:{}'.format(len(data), self.host, self.port))
|
||||||
if data:
|
if data and self.buffer_receive < self.next_message_size:
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
data = self.s.recv(self.next_message_size - len(self.buffer_receive))
|
data = self.s.recv(self.next_message_size - len(self.buffer_receive))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user