| 4530 | } |
| 4531 | |
| 4532 | bool configuration_impl::is_secure_service(service_t _service, instance_t _instance) const { |
| 4533 | std::scoped_lock its_lock(secure_services_mutex_); |
| 4534 | const auto its_service = secure_services_.find(_service); |
| 4535 | if (its_service != secure_services_.end()) |
| 4536 | return (its_service->second.contains(_instance)); |
| 4537 | return false; |
| 4538 | } |
| 4539 | |
| 4540 | int configuration_impl::get_udp_receive_buffer_size() const { |
| 4541 |
no test coverage detected