| 1941 | } |
| 1942 | |
| 1943 | void application_impl::set_routing_state(routing_state_e _routing_state) { |
| 1944 | if (!routing_app_) { |
| 1945 | VSOMEIP_WARNING_P << "Set " << static_cast<int>(_routing_state) << ", not supported (nullptr)"; |
| 1946 | } else { |
| 1947 | routing_app_->set_routing_state(_routing_state); |
| 1948 | } |
| 1949 | } |
| 1950 | |
| 1951 | connection_control_response_e application_impl::change_connection_control(connection_control_request_e _control, |
| 1952 | const std::string& _guest_address) { |
no outgoing calls
no test coverage detected