The Pedigree Project
0.1
|
#include "lwip/arch.h"
Go to the source code of this file.
Classes | |
struct | dns_hdr |
Macros | |
#define | DNS_SERVER_PORT 53 |
#define | DNS_RRTYPE_A 1 /* a host address */ |
#define | DNS_RRTYPE_NS 2 /* an authoritative name server */ |
#define | DNS_RRTYPE_MD 3 /* a mail destination (Obsolete - use MX) */ |
#define | DNS_RRTYPE_MF 4 /* a mail forwarder (Obsolete - use MX) */ |
#define | DNS_RRTYPE_CNAME 5 /* the canonical name for an alias */ |
#define | DNS_RRTYPE_SOA 6 /* marks the start of a zone of authority */ |
#define | DNS_RRTYPE_MB 7 /* a mailbox domain name (EXPERIMENTAL) */ |
#define | DNS_RRTYPE_MG 8 /* a mail group member (EXPERIMENTAL) */ |
#define | DNS_RRTYPE_MR 9 /* a mail rename domain name (EXPERIMENTAL) */ |
#define | DNS_RRTYPE_NULL 10 /* a null RR (EXPERIMENTAL) */ |
#define | DNS_RRTYPE_WKS 11 /* a well known service description */ |
#define | DNS_RRTYPE_PTR 12 /* a domain name pointer */ |
#define | DNS_RRTYPE_HINFO 13 /* host information */ |
#define | DNS_RRTYPE_MINFO 14 /* mailbox or mail list information */ |
#define | DNS_RRTYPE_MX 15 /* mail exchange */ |
#define | DNS_RRTYPE_TXT 16 /* text strings */ |
#define | DNS_RRTYPE_AAAA 28 /* IPv6 address */ |
#define | DNS_RRTYPE_SRV 33 /* service location */ |
#define | DNS_RRTYPE_ANY 255 /* any type */ |
#define | DNS_RRCLASS_IN 1 /* the Internet */ |
#define | DNS_RRCLASS_CS 2 /* the CSNET class (Obsolete - used only for examples in some obsolete RFCs) */ |
#define | DNS_RRCLASS_CH 3 /* the CHAOS class */ |
#define | DNS_RRCLASS_HS 4 /* Hesiod [Dyer 87] */ |
#define | DNS_RRCLASS_ANY 255 /* any class */ |
#define | DNS_RRCLASS_FLUSH 0x800 /* Flush bit */ |
#define | DNS_FLAG1_RESPONSE 0x80 |
#define | DNS_FLAG1_OPCODE_STATUS 0x10 |
#define | DNS_FLAG1_OPCODE_INVERSE 0x08 |
#define | DNS_FLAG1_OPCODE_STANDARD 0x00 |
#define | DNS_FLAG1_AUTHORATIVE 0x04 |
#define | DNS_FLAG1_TRUNC 0x02 |
#define | DNS_FLAG1_RD 0x01 |
#define | DNS_FLAG2_RA 0x80 |
#define | DNS_FLAG2_ERR_MASK 0x0f |
#define | DNS_FLAG2_ERR_NONE 0x00 |
#define | DNS_FLAG2_ERR_NAME 0x03 |
#define | DNS_HDR_GET_OPCODE(hdr) ((((hdr)->flags1) >> 3) & 0xF) |
#define | SIZEOF_DNS_HDR 12 |
#define | DNS_MQUERY_PORT 5353 |
#define | DNS_MQUERY_IPV4_GROUP_INIT IPADDR4_INIT_BYTES(224,0,0,251) |
#define | DNS_MQUERY_IPV6_GROUP_INIT IPADDR6_INIT_HOST(0xFF020000,0,0,0xFB) |
Variables | |
PACK_STRUCT_BEGIN struct dns_hdr | PACK_STRUCT_STRUCT |
DNS - host name to IP address resolver.
Definition in file prot/dns.h.
#define DNS_MQUERY_PORT 5353 |
UDP port for multicast DNS queries
Definition at line 142 of file prot/dns.h.
#define DNS_SERVER_PORT 53 |
DNS server port address
Definition at line 70 of file prot/dns.h.