///////////////////////////////////////////////////////
| 196 | |
| 197 | //////////////////////////////////////////////////////////// |
| 198 | std::array<std::uint8_t, 16> IpAddress::toBytes() const |
| 199 | { |
| 200 | assert(std::holds_alternative<V6Data>(m_address)); |
| 201 | return std::get<V6Data>(m_address); |
| 202 | } |
| 203 | |
| 204 | |
| 205 | //////////////////////////////////////////////////////////// |
no outgoing calls
no test coverage detected