| 45 | |
| 46 | void setOOBInline(Exception& ex, bool flag) { setOption(ex, SOL_SOCKET, SO_OOBINLINE, flag ? 1 : 0); } |
| 47 | bool getOOBInline(Exception& ex) const { return getOption(ex, SOL_SOCKET, SO_OOBINLINE) != 0; } |
| 48 | |
| 49 | void setLinger(Exception& ex,bool on, int seconds) { |
| 50 | struct linger l; |
nothing calls this directly
no outgoing calls
no test coverage detected