Tell the admin we're shutting down. */
| 197 | |
| 198 | /** Tell the admin we're shutting down. */ |
| 199 | NetworkRecvStatus ServerNetworkAdminSocketHandler::SendShutdown() |
| 200 | { |
| 201 | auto p = std::make_unique<Packet>(this, ADMIN_PACKET_SERVER_SHUTDOWN); |
| 202 | this->SendPacket(std::move(p)); |
| 203 | return NETWORK_RECV_STATUS_OKAY; |
| 204 | } |
| 205 | |
| 206 | /** Tell the admin the date. */ |
| 207 | NetworkRecvStatus ServerNetworkAdminSocketHandler::SendDate() |
no test coverage detected