| 204 | } |
| 205 | |
| 206 | ISocketStream* connect(const char* path, size_t count) override { |
| 207 | struct sockaddr_un addr_un; |
| 208 | if (fill_uds_path(addr_un, path, count) != 0) return nullptr; |
| 209 | sockaddr_storage r(addr_un); |
| 210 | return do_connect(&r); |
| 211 | } |
| 212 | |
| 213 | ISocketStream* connect(const EndPoint& remote, const EndPoint* local) override { |
| 214 | sockaddr_storage r(remote); |
nothing calls this directly
no test coverage detected