| 18 | |
| 19 | namespace { |
| 20 | std::string to_string(vsomeip_v3::local_socket_uds_impl::endpoint _own_endpoint, vsomeip_v3::local_socket_uds_impl::endpoint _peer_endpoint, |
| 21 | vsomeip_v3::local_socket_uds_impl const* _address, vsomeip_v3::socket_role_e _role) { |
| 22 | std::stringstream s; |
| 23 | s << "role: " << vsomeip_v3::to_string(_role) << ", own: " << _own_endpoint << ", peer: " << _peer_endpoint << ", mem: " << _address; |
| 24 | return s.str(); |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | namespace vsomeip_v3 { |
no outgoing calls
no test coverage detected