You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
451 B
28 lines
451 B
#ifndef _DNS_H_ |
|
#define _DNS_H_ 1 |
|
|
|
#include <stdint.h> |
|
|
|
typedef struct { |
|
int v; |
|
union { |
|
unsigned char v4[4]; |
|
unsigned char v6[16]; |
|
} data; |
|
} addr_t; |
|
|
|
typedef struct { |
|
int port; |
|
int datattl; |
|
int nsttl; |
|
const char *host; |
|
const char *ns; |
|
const char *mbox; |
|
int (*cb)(void *opt, addr_t *addr, int max, int ipv4, int ipv6); |
|
// stats |
|
uint64_t nRequests; |
|
} dns_opt_t; |
|
|
|
extern int dnsserver(dns_opt_t *opt); |
|
|
|
#endif
|
|
|