| 58 | } |
| 59 | |
| 60 | bool UniverseConnection::send() { |
| 61 | MutexLocker locker(m_mutex); |
| 62 | m_packetSocket->sendPackets(take(m_sendQueue)); |
| 63 | return m_packetSocket->writeData(); |
| 64 | } |
| 65 | |
| 66 | bool UniverseConnection::sendAll(unsigned timeout) { |
| 67 | MutexLocker locker(m_mutex); |
no test coverage detected