///////////////////////////////////////////////////////
| 204 | |
| 205 | //////////////////////////////////////////////////////////// |
| 206 | IpAddress::Type IpAddress::getType() const |
| 207 | { |
| 208 | return std::holds_alternative<V4Data>(m_address) ? Type::IpV4 : Type::IpV6; |
| 209 | } |
| 210 | |
| 211 | |
| 212 | //////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected