| 9 | namespace PacketReader::IP::UDP::DHCP |
| 10 | { |
| 11 | DHCPopSubnet::DHCPopSubnet(IP_Address mask) |
| 12 | : subnetMask{mask} |
| 13 | { |
| 14 | } |
| 15 | DHCPopSubnet::DHCPopSubnet(const u8* data, int offset) |
| 16 | { |
| 17 | offset += 2; |
nothing calls this directly
no test coverage detected