MCPcopy Create free account
hub / github.com/MonaSolutions/MonaServer / setReceiveBufferSize

Method setReceiveBufferSize

MonaBase/sources/Socket.cpp:34–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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); }
36
37 void setNoDelay(Exception& ex, bool flag) { setOption(ex,IPPROTO_TCP, TCP_NODELAY, flag ? 1 : 0); }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected