Use TCP_NODELAY on the socket, it may be better to make test_buffering relevant

This commit is contained in:
2021-03-05 20:21:44 +01:00
parent c58c238875
commit 4d2976c7e6

View File

@ -17,6 +17,11 @@ class ClientMock:
def connect(self, hostname: str, port: int) -> None:
self.conn = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
# probably useful for test_buffering, as it relies on chunking
# the packets to be useful
self.conn.setsockopt(socket.SOL_TCP, socket.TCP_NODELAY, 1)
self.conn.settimeout(1) # TODO: configurable
self.conn.connect((hostname, port))
if self.show_io: