mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-06 04:49:16 +00:00
Updated network related code so now it should work as expected
This commit is contained in:
16
Network/DomainNameSystem.cpp
Normal file
16
Network/DomainNameSystem.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
#include <net/dns.hpp>
|
||||
#include <debug.h>
|
||||
|
||||
#include "../kernel.h"
|
||||
|
||||
namespace NetworkDNS
|
||||
{
|
||||
DNS::DNS(NetworkUDP::Socket *Socket) : NetworkUDP::UDPEvents()
|
||||
{
|
||||
this->UDPSocket = Socket;
|
||||
}
|
||||
|
||||
DNS::~DNS()
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user