| 6 | |
| 7 | namespace NDns { |
| 8 | struct TResolveInfo { |
| 9 | inline TResolveInfo(const TStringBuf& host, ui16 port) |
| 10 | : Host(host) |
| 11 | , Port(port) |
| 12 | { |
| 13 | } |
| 14 | |
| 15 | TStringBuf Host; |
| 16 | ui16 Port; |
| 17 | }; |
| 18 | |
| 19 | struct TResolvedHost { |
| 20 | inline TResolvedHost(const TString& host, const TNetworkAddress& addr) noexcept |
no outgoing calls
no test coverage detected