mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
Use TCP_NODELAY on the socket, it may be better to make test_buffering relevant
This commit is contained in:
@ -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:
|
||||
|
Reference in New Issue
Block a user