| 572 | } |
| 573 | |
| 574 | void routing_manager_stub::lazy_load(const std::string& _client_host) { |
| 575 | #if !defined(VSOMEIP_DISABLE_SECURITY) && (defined(__linux__)) |
| 576 | std::scoped_lock lock{lazy_load_mtx_}; |
| 577 | if (configuration_->is_security_enabled() && !configuration_->is_security_external()) { |
| 578 | configuration_->lazy_load_security(_client_host); |
| 579 | configuration_->lazy_load_security(host_->get_client_host()); // necessary for lazy loading from inside android container |
| 580 | } |
| 581 | #endif |
| 582 | } |
| 583 | |
| 584 | void routing_manager_stub::on_deregister_application(client_t _client) { |
| 585 | std::vector<std::tuple<service_t, instance_t, major_version_t, minor_version_t>> services_to_report; |
nothing calls this directly
no test coverage detected