| 15 | } |
| 16 | |
| 17 | static inline TNetworkAddress ToNetworkAddr(const TString& address, ui16 port) { |
| 18 | if (address.empty() || address == TStringBuf("*")) { |
| 19 | return TNetworkAddress(port); |
| 20 | } |
| 21 | |
| 22 | return TNetworkAddress(address, port); |
| 23 | } |
| 24 | |
| 25 | void THttpServerOptions::BindAddresses(TBindAddresses& ret) const { |
| 26 | THashSet<TString> check; |
no test coverage detected