| 2750 | } |
| 2751 | |
| 2752 | bool configuration_impl::is_someip(service_t _service, instance_t _instance) const { |
| 2753 | if (auto its_service = find_service({_service, _instance}); its_service) |
| 2754 | return (its_service->protocol_ == "someip"); |
| 2755 | return true; // we need to explicitely configure a service to |
| 2756 | // be something else than SOME/IP |
| 2757 | } |
| 2758 | |
| 2759 | bool configuration_impl::get_client_port(service_t _service, instance_t _instance, uint16_t _remote_port, bool _reliable, |
| 2760 | std::map<bool, std::set<uint16_t>>& _used_client_ports, uint16_t& _client_port) const { |
no outgoing calls
no test coverage detected