| 15 | IPv4Address subnet = {255, 255, 255, 255}; |
| 16 | |
| 17 | MACAddress IPLookup(IPv4Address& ip){ |
| 18 | Log::Warning("[Network] IPLookup not implemented"); |
| 19 | return {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; |
| 20 | } |
| 21 | |
| 22 | void OnReceiveICMP(void* data, size_t length){ |
| 23 | if(length < sizeof(ICMPHeader)){ |