| 107 | } |
| 108 | |
| 109 | bool local_socket_uds_impl::update(vsomeip_sec_client_t& _client, [[maybe_unused]] configuration const& _configuration) { |
| 110 | std::scoped_lock const lock{socket_mtx_}; |
| 111 | if (!socket_->get_peer_credentials(_client)) { |
| 112 | VSOMEIP_ERROR_P << "Could not getsockopt(SO_PEERCRED), errno " << errno; |
| 113 | return false; |
| 114 | } |
| 115 | return true; |
| 116 | } |
| 117 | |
| 118 | port_t local_socket_uds_impl::own_port() const { |
| 119 | return VSOMEIP_SEC_PORT_UNUSED; |
no test coverage detected