Skip to content
Snippets Groups Projects
Commit 578247c1 authored by dnsadmin's avatar dnsadmin
Browse files

Hiányzó osztálydoksik pótlása (#18)

parent befa086c
Branches
Tags
No related merge requests found
......@@ -18,6 +18,9 @@ using namespace std;
class udp_packet_wp;
/**
* Wrapper class for DNS messages.
*/
class dns_message_em
{
public:
......
......@@ -12,6 +12,11 @@
#include "general_sockaddr_wp.h"
#include "udp_socket_wp.h"
/**
* A DNS server object.
* Contains all the data necessary for serving DNS queries.
* It is optionally multi threaded.
*/
class dns_server
{
private:
......
......@@ -15,6 +15,9 @@
class dns_message_em;
/**
* Wrapper class for UDP packets, and manage their stuff.
*/
class udp_packet_wp
{
char *buf; /** The content of the UDP packet. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment