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

Method getReceiveBufferSize

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

Source from the content-addressed store, hash-verified

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); }
38 bool getNoDelay(Exception& ex) const { return getOption(ex, IPPROTO_TCP, TCP_NODELAY) != 0; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected