| 11 | using TAddr = THttpServerOptions::TAddr; |
| 12 | |
| 13 | static inline TString AddrToString(const TAddr& addr) { |
| 14 | return addr.Addr + ":" + ToString(addr.Port); |
| 15 | } |
| 16 | |
| 17 | static inline TNetworkAddress ToNetworkAddr(const TString& address, ui16 port) { |
| 18 | if (address.empty() || address == TStringBuf("*")) { |
no test coverage detected