///////////////////////////////////////////////////////
| 76 | |
| 77 | //////////////////////////////////////////////////////////// |
| 78 | void Socket::setBlocking(bool blocking) |
| 79 | { |
| 80 | // Apply if the socket is already created |
| 81 | if (m_socket != priv::SocketImpl::invalidSocket()) |
| 82 | priv::SocketImpl::setBlocking(m_socket, blocking); |
| 83 | |
| 84 | m_isBlocking = blocking; |
| 85 | } |
| 86 | |
| 87 | |
| 88 | //////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected