| 1105 | } |
| 1106 | |
| 1107 | static bool ConNetworkClients(std::span<std::string_view> argv) |
| 1108 | { |
| 1109 | if (argv.empty()) { |
| 1110 | IConsolePrint(CC_HELP, "Get a list of connected clients including their ID, name, company-id, and IP. Usage: 'clients'."); |
| 1111 | return true; |
| 1112 | } |
| 1113 | |
| 1114 | NetworkPrintClients(); |
| 1115 | |
| 1116 | return true; |
| 1117 | } |
| 1118 | |
| 1119 | static bool ConNetworkReconnect(std::span<std::string_view> argv) |
| 1120 | { |
nothing calls this directly
no test coverage detected