1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 01:17:46 +00:00

Kernel: Move networking related files into Kernel/Net/.

This commit is contained in:
Andreas Kling 2019-04-02 19:54:38 +02:00
parent 718bea73b3
commit 649c81a714
26 changed files with 61 additions and 63 deletions

View file

@ -34,14 +34,14 @@ KERNEL_OBJS = \
PS2MouseDevice.o \
Socket.o \
LocalSocket.o \
IPv4Socket.o \
TCPSocket.o \
UDPSocket.o \
NetworkAdapter.o \
E1000NetworkAdapter.o \
Net/IPv4Socket.o \
Net/TCPSocket.o \
Net/UDPSocket.o \
Net/NetworkAdapter.o \
Net/E1000NetworkAdapter.o \
Net/LoopbackAdapter.o \
Net/Routing.o \
NetworkTask.o
Net/NetworkTask.o
VFS_OBJS = \
DiskDevice.o \