mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-30 08:18:01 +00:00
17 lines
234 B
C++
17 lines
234 B
C++
#include <net/dns.hpp>
|
|
#include <debug.h>
|
|
|
|
#include "../kernel.h"
|
|
|
|
namespace NetworkDNS
|
|
{
|
|
DNS::DNS(NetworkUDP::Socket *Socket) : NetworkUDP::UDPEvents()
|
|
{
|
|
this->UDPSocket = Socket;
|
|
}
|
|
|
|
DNS::~DNS()
|
|
{
|
|
}
|
|
}
|