| 87 | } |
| 88 | |
| 89 | void NetworkServer::DeviceListChanged() |
| 90 | { |
| 91 | /*-------------------------------------------------*\ |
| 92 | | Indicate to the clients that the controller list | |
| 93 | | has changed | |
| 94 | \*-------------------------------------------------*/ |
| 95 | for(unsigned int client_idx = 0; client_idx < ServerClients.size(); client_idx++) |
| 96 | { |
| 97 | SendRequest_DeviceListChanged(ServerClients[client_idx]->client_sock); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | void NetworkServer::ServerListeningChanged() |
| 102 | { |