1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:07:35 +00:00

Kernel+AK: Separate out MACAddress and move it into AK

This commit is contained in:
AnotherTest 2020-04-04 15:48:28 +04:30 committed by Andreas Kling
parent 55b25b3c9b
commit 7d0bf9b5a9
5 changed files with 7 additions and 8 deletions

View file

@ -28,6 +28,7 @@
#include <AK/ByteBuffer.h>
#include <AK/Function.h>
#include <AK/MACAddress.h>
#include <AK/SinglyLinkedList.h>
#include <AK/Types.h>
#include <AK/WeakPtr.h>
@ -36,7 +37,6 @@
#include <Kernel/Net/ARP.h>
#include <Kernel/Net/ICMP.h>
#include <Kernel/Net/IPv4.h>
#include <Kernel/Net/MACAddress.h>
namespace Kernel {