| 36 | } |
| 37 | |
| 38 | void UniverseConnection::push(List<PacketPtr> packets) { |
| 39 | MutexLocker locker(m_mutex); |
| 40 | m_sendQueue.appendAll(std::move(packets)); |
| 41 | } |
| 42 | |
| 43 | void UniverseConnection::pushSingle(PacketPtr packet) { |
| 44 | MutexLocker locker(m_mutex); |
no test coverage detected