mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
21 lines
349 B
C++
21 lines
349 B
C++
#ifndef __FENNIX_KERNEL_DNS_H__
|
|
#define __FENNIX_KERNEL_DNS_H__
|
|
|
|
#include <net/udp.hpp>
|
|
#include <types.h>
|
|
|
|
namespace NetworkDNS
|
|
{
|
|
class DNS : public NetworkUDP::UDPEvents
|
|
{
|
|
private:
|
|
NetworkUDP::Socket *UDPSocket;
|
|
|
|
public:
|
|
DNS(NetworkUDP::Socket *Socket);
|
|
~DNS();
|
|
};
|
|
}
|
|
|
|
#endif // !__FENNIX_KERNEL_DNS_H__
|