mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-25 22:14:37 +00:00
19 lines
340 B
C++
19 lines
340 B
C++
#include <net/dns.hpp>
|
|
#include <debug.h>
|
|
|
|
#include "../kernel.h"
|
|
|
|
namespace NetworkDNS
|
|
{
|
|
DNS::DNS(NetworkUDP::Socket *Socket) : NetworkUDP::UDPEvents()
|
|
{
|
|
debug("DNS interface %#lx created.", this);
|
|
this->UDPSocket = Socket;
|
|
}
|
|
|
|
DNS::~DNS()
|
|
{
|
|
debug("DNS interface %#lx destroyed.", this);
|
|
}
|
|
}
|