mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-09 06:19:19 +00:00
Updated network related code so now it should work as expected
This commit is contained in:
20
include/net/dns.hpp
Normal file
20
include/net/dns.hpp
Normal file
@ -0,0 +1,20 @@
|
||||
#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__
|
Reference in New Issue
Block a user