mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 00:02:04 -04:00
minor updates; add dns_offsets_t, dns_signature_t, dns_namelist_t
This commit is contained in:
parent
68109fb883
commit
9d1650c9fd
1 changed files with 9 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue