Return true if two NetworkAddressPB are match.
| 133 | |
| 134 | /// Return true if two NetworkAddressPB are match. |
| 135 | inline bool KrpcAddressEqual(const NetworkAddressPB& lhs, const NetworkAddressPB& rhs) { |
| 136 | return CompareNetworkAddressPB(lhs, rhs) == 0; |
| 137 | } |
| 138 | |
| 139 | extern const std::string LOCALHOST_IP_STR; |
| 140 |
no test coverage detected