| 18 | NetLib::ReadIPAddress(data, &offset, &subnetMask); |
| 19 | } |
| 20 | void DHCPopSubnet::WriteBytes(u8* buffer, int* offset) const |
| 21 | { |
| 22 | NetLib::WriteByte08(buffer, offset, GetCode()); |
| 23 | NetLib::WriteByte08(buffer, offset, GetLength() - 2); |
| 24 | NetLib::WriteIPAddress(buffer, offset, subnetMask); |
| 25 | } |
| 26 | |
| 27 | DHCPopRouter::DHCPopRouter(const std::vector<IP_Address>& routerIPs) |
| 28 | : routers{routerIPs} |
nothing calls this directly
no test coverage detected