| 38 | bool getNoDelay(Exception& ex) const { return getOption(ex, IPPROTO_TCP, TCP_NODELAY) != 0; } |
| 39 | |
| 40 | void setKeepAlive(Exception& ex, bool flag) { setOption(ex, SOL_SOCKET, SO_KEEPALIVE, flag ? 1 : 0); } |
| 41 | bool getKeepAlive(Exception& ex) const { return getOption(ex,SOL_SOCKET, SO_KEEPALIVE) != 0; } |
| 42 | |
| 43 | void setReuseAddress(Exception& ex, bool flag) { setOption(ex, SOL_SOCKET, SO_REUSEADDR, flag ? 1 : 0); } |
nothing calls this directly
no outgoing calls
no test coverage detected