| 262 | } |
| 263 | |
| 264 | uint16_t HostAddressWithPort::port() const { |
| 265 | return m_port; |
| 266 | } |
| 267 | |
| 268 | bool HostAddressWithPort::operator==(HostAddressWithPort const& rhs) const { |
| 269 | return tie(m_address, m_port) == tie(rhs.m_address, rhs.m_port); |
no outgoing calls