| 342 | } |
| 343 | |
| 344 | void socket::close_fd() { |
| 345 | if (mFd != -1) { |
| 346 | plat_close(mFd); |
| 347 | mFd = -1; |
| 348 | } |
| 349 | mNonBlocking = false; |
| 350 | } |
| 351 | |
| 352 | // ============================================================================ |
| 353 | // acceptor implementation |
nothing calls this directly
no test coverage detected