* Send a Welcome packet to all connected admins */
| 1048 | * Send a Welcome packet to all connected admins |
| 1049 | */ |
| 1050 | void ServerNetworkAdminSocketHandler::WelcomeAll() |
| 1051 | { |
| 1052 | for (ServerNetworkAdminSocketHandler *as : ServerNetworkAdminSocketHandler::IterateActive()) { |
| 1053 | as->SendWelcome(); |
| 1054 | } |
| 1055 | } |
| 1056 | |
| 1057 | /** |
| 1058 | * Send (push) updates to the admin network as they have registered for these updates. |
nothing calls this directly
no test coverage detected