mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 17:05:06 +00:00
Kernel: Ignore IPv6 packets; log unknown Ethernet payload types
This commit is contained in:
parent
4a4e66b2d0
commit
5f86a979ea
2 changed files with 6 additions and 0 deletions
|
@ -126,6 +126,11 @@ void NetworkTask_main()
|
|||
case EtherType::IPv4:
|
||||
handle_ipv4(eth, packet.size());
|
||||
break;
|
||||
case EtherType::IPv6:
|
||||
// ignore
|
||||
break;
|
||||
default:
|
||||
kprintf("NetworkTask: Unknown ethernet type %#04x\n", eth.ether_type());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue