| 30 | public: |
| 31 | void setSendBufferSize(Exception& ex,int size) { setOption(ex, SOL_SOCKET, SO_SNDBUF, size); } |
| 32 | int getSendBufferSize(Exception& ex) const { return getOption(ex,SOL_SOCKET, SO_SNDBUF); } |
| 33 | |
| 34 | void setReceiveBufferSize(Exception& ex, int size) { setOption(ex, SOL_SOCKET, SO_RCVBUF, size); } |
| 35 | int getReceiveBufferSize(Exception& ex) const { return getOption(ex,SOL_SOCKET, SO_RCVBUF); } |
nothing calls this directly
no outgoing calls
no test coverage detected