Send ping-reply (pong) to admin **/
| 559 | |
| 560 | /** Send ping-reply (pong) to admin **/ |
| 561 | NetworkRecvStatus ServerNetworkAdminSocketHandler::SendPong(uint32_t d1) |
| 562 | { |
| 563 | auto p = std::make_unique<Packet>(this, ADMIN_PACKET_SERVER_PONG); |
| 564 | |
| 565 | p->Send_uint32(d1); |
| 566 | this->SendPacket(std::move(p)); |
| 567 | |
| 568 | return NETWORK_RECV_STATUS_OKAY; |
| 569 | } |
| 570 | |
| 571 | /** Send the names of the commands. */ |
| 572 | NetworkRecvStatus ServerNetworkAdminSocketHandler::SendCmdNames() |
no test coverage detected