| 152 | } |
| 153 | |
| 154 | TNetworkAddress MakeNetworkAddress(const string& hostname, int port) { |
| 155 | TNetworkAddress ret; |
| 156 | ret.__set_hostname(hostname); |
| 157 | ret.__set_port(port); |
| 158 | return ret; |
| 159 | } |
| 160 | |
| 161 | TNetworkAddress MakeNetworkAddress(const string& address) { |
| 162 | vector<string> tokens; |