X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/01f3d2752a98159d7c119ce6fdb5645a75197d11..9a6aafe0039fef580ca1bfcf0e87c1ba8e2953ba:/src/common/sckipc.cpp diff --git a/src/common/sckipc.cpp b/src/common/sckipc.cpp index 5658e064b2..0aed548807 100644 --- a/src/common/sckipc.cpp +++ b/src/common/sckipc.cpp @@ -184,11 +184,11 @@ public: // ctor initializes all the streams on top of the given socket // // note that we use a bigger than default buffer size which matches the - // typical Ethernet MTU + // typical Ethernet MTU (minus TCP header overhead) wxIPCSocketStreams(wxSocketBase& sock) : m_socketStream(sock), #ifdef USE_BUFFER - m_bufferedOut(m_socketStream, 1500), + m_bufferedOut(m_socketStream, 1448), #else m_bufferedOut(m_socketStream), #endif