| 178 | } |
| 179 | |
| 180 | NetworkAddressPB MakeNetworkAddressPB(const string& hostname, int port) { |
| 181 | NetworkAddressPB ret; |
| 182 | ret.set_hostname(hostname); |
| 183 | ret.set_port(port); |
| 184 | return ret; |
| 185 | } |
| 186 | |
| 187 | string GetUDSAddress(const std::string& hostname, int port, const UniqueIdPB& backend_id, |
| 188 | const UdsAddressUniqueIdPB& uds_addr_unique_id) { |