| 319 | } |
| 320 | |
| 321 | inline void SetSocketTimeout(long timeout) { |
| 322 | ::SetSocketTimeout(Fd(), timeout); |
| 323 | } |
| 324 | |
| 325 | inline void SetSocketTimeout(long sec, long msec) { |
| 326 | ::SetSocketTimeout(Fd(), sec, msec); |
nothing calls this directly
no test coverage detected