| 142 | struct addrinfo; |
| 143 | |
| 144 | class TNetworkResolutionError: public yexception { |
| 145 | public: |
| 146 | // @param error error code (EAI_XXX) returned by getaddrinfo or getnameinfo (not errno) |
| 147 | TNetworkResolutionError(int error); |
| 148 | }; |
| 149 | |
| 150 | struct TUnixSocketPath { |
| 151 | TString Path; |
no outgoing calls