| 431 | } |
| 432 | |
| 433 | int PluginManager::GetTotalConnectedClientsCount() { |
| 434 | int total_size = 0; |
| 435 | VisitNetPlugins([&](GrNetPlugin* plugin) { |
| 436 | total_size += plugin->GetConnectedClientsCount(); |
| 437 | }); |
| 438 | return total_size; |
| 439 | } |
| 440 | |
| 441 | std::vector<std::shared_ptr<GrConnectedClientInfo>> PluginManager::GetConnectedClientsInfo() { |
| 442 | std::vector<std::shared_ptr<GrConnectedClientInfo>> clients_info; |
no test coverage detected