| 989 | } |
| 990 | |
| 991 | void routing_manager_stub::on_ping(client_t _client) { |
| 992 | |
| 993 | if (auto its_endpoint = find_local_routing_endpoint(_client); its_endpoint) { |
| 994 | its_endpoint->send(protocol::create_pong_cmd(VSOMEIP_ROUTING_CLIENT)); |
| 995 | } else { |
| 996 | VSOMEIP_WARNING_P << "Couldn't find endpoint for client " << hex4(_client); |
| 997 | } |
| 998 | } |
| 999 | |
| 1000 | void routing_manager_stub::on_pong(client_t _client) { |
| 1001 | remove_from_pinged_clients(_client); |
nothing calls this directly
no test coverage detected