]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/sckipc.cpp
Change in wxWindow the access specifier of the wxEvtHandler event processing and...
[wxWidgets.git] / src / common / sckipc.cpp
index 2e860b6d79a957a00c822d3ccd3e5d97b991f5ff..0aed548807c1c1d39fd73548b459183eb4965679 100644 (file)
@@ -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, 1488),
+          m_bufferedOut(m_socketStream, 1448),
 #else
           m_bufferedOut(m_socketStream),
 #endif