| 315 | |
| 316 | template <class T> |
| 317 | inline void SetSockOpt(int level, int optname, T opt) { |
| 318 | CheckedSetSockOpt(Fd(), level, optname, opt, "TSocket"); |
| 319 | } |
| 320 | |
| 321 | inline void SetSocketTimeout(long timeout) { |
| 322 | ::SetSocketTimeout(Fd(), timeout); |
nothing calls this directly
no test coverage detected