///////////////////////////////////////////////////////
| 88 | |
| 89 | //////////////////////////////////////////////////////////// |
| 90 | IpAddress::IpAddress(std::uint8_t byte0, std::uint8_t byte1, std::uint8_t byte2, std::uint8_t byte3) : |
| 91 | m_address(static_cast<std::uint32_t>((byte0 << 24) | (byte1 << 16) | (byte2 << 8) | byte3)) |
| 92 | { |
| 93 | } |
| 94 | |
| 95 | |
| 96 | //////////////////////////////////////////////////////////// |
nothing calls this directly
no outgoing calls
no test coverage detected