| 1343 | } |
| 1344 | |
| 1345 | void NetworkBase::ServerSendToken(Connection& connection) |
| 1346 | { |
| 1347 | Packet packet(Command::token); |
| 1348 | packet << static_cast<uint32_t>(connection.challenge.size()); |
| 1349 | packet.write(connection.challenge.data(), connection.challenge.size()); |
| 1350 | connection.queuePacket(std::move(packet)); |
| 1351 | } |
| 1352 | |
| 1353 | void NetworkBase::ServerSendObjectsList( |
| 1354 | Connection& connection, const std::vector<const ObjectRepositoryItem*>& objects) const |
nothing calls this directly
no test coverage detected