| 121 | inline IPAddrPair::IPAddrPair(const swoc::IP4Addr &addr4, const swoc::IP6Addr &addr6) : _ip4(addr4), _ip6(addr6) {} |
| 122 | |
| 123 | inline bool |
| 124 | IPAddrPair::has_value() const |
| 125 | { |
| 126 | return _ip4.has_value() || _ip6.has_value(); |
| 127 | } |
| 128 | |
| 129 | inline bool |
| 130 | IPAddrPair::has_ip4() const |
no outgoing calls
no test coverage detected