diff options
Diffstat (limited to 'cppe/src/TcpTransport/Connector.cpp')
-rw-r--r-- | cppe/src/TcpTransport/Connector.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cppe/src/TcpTransport/Connector.cpp b/cppe/src/TcpTransport/Connector.cpp index c2c110f4dd3..04d44e49322 100644 --- a/cppe/src/TcpTransport/Connector.cpp +++ b/cppe/src/TcpTransport/Connector.cpp @@ -32,6 +32,7 @@ Connector::connect(int timeout) SOCKET fd = createSocket(); setBlock(fd, false); + setTcpBufSize(fd, _instance->initializationData().properties, _logger); doConnect(fd, _addr, timeout); #ifndef ICEE_USE_SELECT_OR_POLL_FOR_TIMEOUTS setBlock(fd, true); |