Merge pull request #8 from MuallimCh/patch-1

Update tcp_transport.py to increment send_counter in case it fails
This commit is contained in:
Lonami 2016-10-09 10:18:39 +02:00 committed by GitHub
commit b52cb12b2a

View File

@ -27,9 +27,9 @@ class TcpTransport:
crc = crc32(writer.get_bytes())
writer.write_int(crc, signed=False)
self.tcp_client.write(writer.get_bytes())
self.send_counter += 1
self.tcp_client.write(writer.get_bytes())
def receive(self, timeout=timedelta(seconds=5)):
"""Receives a TCP message (tuple(sequence number, body)) from the connected peer.