minor updates; add dns_offsets_t, dns_signature_t, dns_namelist_t

This commit is contained in:
Bob Halley 1999-01-09 00:23:21 +00:00
parent 68109fb883
commit 9d1650c9fd

View file

@ -27,14 +27,21 @@
*/
#include <isc/region.h>
#include <isc/int.h>
#include <isc/list.h>
typedef isc_region_t dns_label_t;
typedef struct dns_name dns_name_t;
typedef unsigned char dns_offsets_t[128];
typedef struct dns_compress dns_compress_t;
typedef struct dns_decompress dns_decompress_t;
typedef unsigned int dns_rdataclass_t;
typedef unsigned int dns_rdatatype_t;
typedef isc_uint16_t dns_rdataclass_t;
typedef isc_uint16_t dns_rdatatype_t;
typedef isc_uint32_t dns_ttl_t;
typedef struct dns_rdata dns_rdata_t;
typedef struct dns_signature dns_signature_t;
typedef struct dns_rdataset dns_rdataset_t;
typedef ISC_LIST(dns_name_t) dns_namelist_t;
typedef enum {
dns_labeltype_ordinary = 0,