| 183 | } |
| 184 | |
| 185 | bool NETADDR::operator<(const NETADDR &other) const |
| 186 | { |
| 187 | return net_addr_comp(this, &other) < 0; |
| 188 | } |
| 189 | |
| 190 | size_t std::hash<NETADDR>::operator()(const NETADDR &Addr) const noexcept |
| 191 | { |
nothing calls this directly
no test coverage detected