| 272 | } |
| 273 | const sockaddr_un* unix_addr = reinterpret_cast<const sockaddr_un*>(&ss); |
| 274 | size_t path_len = addr_len - offsetof(struct sockaddr_un, sun_path); |
| 275 | // This is an unnamed local socket, we do not accept it. |
| 276 | if (path_len == 0) { |
| 277 | return false; |
nothing calls this directly
no outgoing calls
no test coverage detected