| 148 | }; |
| 149 | |
| 150 | struct TUnixSocketPath { |
| 151 | TString Path; |
| 152 | |
| 153 | // Constructor for create unix domain socket path from string with path in filesystem |
| 154 | // TUnixSocketPath("/tmp/unixsocket") -> "/tmp/unixsocket" |
| 155 | explicit TUnixSocketPath(const TString& path) |
| 156 | : Path(path) |
| 157 | { |
| 158 | } |
| 159 | }; |
| 160 | |
| 161 | class TNetworkAddress { |
| 162 | friend class TSocket; |
no outgoing calls
no test coverage detected