From: Vadim Zeitlin Date: Sun, 23 Nov 2008 13:21:11 +0000 (+0000) Subject: don't duplicate SetInitialSocketBuffers() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/3a6ec3c88033c43e108cb1f302717696682eb34f don't duplicate SetInitialSocketBuffers() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56937 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/gsocket.h b/include/wx/gsocket.h index d2fc0d07dd..e8a0338dea 100644 --- a/include/wx/gsocket.h +++ b/include/wx/gsocket.h @@ -179,6 +179,12 @@ public: virtual void Close() = 0; virtual void Shutdown(); + void SetInitialSocketBuffers(int recv, int send) + { + m_initialRecvBufferSize = recv; + m_initialSendBufferSize = send; + } + // notify m_wxsocket about the given socket event by calling its (inaptly // named) OnRequest() method void NotifyOnStateChange(GSocketEvent event); diff --git a/include/wx/msw/gsockmsw.h b/include/wx/msw/gsockmsw.h index 50fd92c138..d7d256a36d 100644 --- a/include/wx/msw/gsockmsw.h +++ b/include/wx/msw/gsockmsw.h @@ -60,12 +60,6 @@ public: GSocketError SetSockOpt(int level, int optname, const void *optval, int optlen); - void SetInitialSocketBuffers(int recv, int send) - { - m_initialRecvBufferSize = recv; - m_initialSendBufferSize = send; - } - protected: GSocketError Input_Timeout(); GSocketError Output_Timeout(); diff --git a/include/wx/unix/gsockunx.h b/include/wx/unix/gsockunx.h index 8bf15cad89..d90bb540b7 100644 --- a/include/wx/unix/gsockunx.h +++ b/include/wx/unix/gsockunx.h @@ -44,11 +44,6 @@ public: void Notify(bool flag); void Detected_Read(); void Detected_Write(); - void SetInitialSocketBuffers(int recv, int send) - { - m_initialRecvBufferSize = recv; - m_initialSendBufferSize = send; - } protected: //enable or disable event callback using gsocket gui callback table