| 316 | */ |
| 317 | |
| 318 | bool RUdpConnection::InitSocket(NetProtocol protocol) |
| 319 | { |
| 320 | CallOnExit updateLastError([this] |
| 321 | { |
| 322 | m_lastError = m_socket.GetLastError(); |
| 323 | }); |
| 324 | |
| 325 | if (!m_socket.Create(protocol)) |
| 326 | return false; |
| 327 | |
| 328 | m_socket.EnableBlocking(false); |
| 329 | return true; |
| 330 | } |
| 331 | |
| 332 | /*! |
| 333 | * \brief Processes the acks |
nothing calls this directly
no test coverage detected