1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 16:18:12 +00:00

Kernel: Collect IPv4 stuff in IPv4.h and ARP stuff in ARP.h.

This commit is contained in:
Andreas Kling 2019-03-12 12:49:01 +01:00
parent 87ecf290f4
commit c6a2012fe9
7 changed files with 60 additions and 66 deletions

View file

@ -4,9 +4,8 @@
#include <AK/SinglyLinkedList.h>
#include <AK/Types.h>
#include <Kernel/MACAddress.h>
#include <Kernel/IPv4Address.h>
#include <Kernel/ARPPacket.h>
#include <Kernel/IPv4Packet.h>
#include <Kernel/IPv4.h>
#include <Kernel/ARP.h>
#include <Kernel/ICMP.h>
class NetworkAdapter {