| 317 | } |
| 318 | |
| 319 | AcceptResult TCPSocket::accept(TCPSocket &c) |
| 320 | { |
| 321 | socket_internal::set_blocking(_priv->socket, true); |
| 322 | return socket_internal::accept(_priv->socket, c); |
| 323 | } |
| 324 | |
| 325 | AcceptResult TCPSocket::accept_nonblock(TCPSocket &c) |
| 326 | { |
nothing calls this directly
no test coverage detected