diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-03-14 12:43:18 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-03-14 12:43:18 +0100 |
commit | edb986c276b6a3e111ca7bd0351c56c5ca923212 (patch) | |
tree | c8b703d825a87fde64bee3220e7843bed9b0d676 /Kernel/Makefile | |
parent | 274b500bac30c176c63dbb4e5fe0b254ab460a74 (diff) | |
download | serenity-edb986c276b6a3e111ca7bd0351c56c5ca923212.zip |
IPv4: Factor out UDP parts of IPv4Socket into a UDPSocket class.
Diffstat (limited to 'Kernel/Makefile')
-rw-r--r-- | Kernel/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Makefile b/Kernel/Makefile index 2f69877f12..5d42acab6d 100644 --- a/Kernel/Makefile +++ b/Kernel/Makefile @@ -36,6 +36,7 @@ KERNEL_OBJS = \ LocalSocket.o \ IPv4Socket.o \ TCPSocket.o \ + UDPSocket.o \ NetworkAdapter.o \ E1000NetworkAdapter.o \ NetworkTask.o |