diff options
| author | christos <christos@NetBSD.org> | 2009-04-12 03:46:04 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2009-04-12 03:46:04 +0000 |
| commit | a52d4154df939b8cc0f4b3db227a75f4ee70bfde (patch) | |
| tree | 807fe68c55cca18fea792fb46c458f548a31e4b5 /external/bsd/bind/include | |
| parent | d5c1a211ce9d646b7f190074a86b354cbd087adc (diff) | |
apply all our patches and the build glue
Diffstat (limited to 'external/bsd/bind/include')
| -rw-r--r-- | external/bsd/bind/include/config.h | 350 | ||||
| -rw-r--r-- | external/bsd/bind/include/dns/code.h | 1745 | ||||
| -rw-r--r-- | external/bsd/bind/include/dns/enumclass.h | 48 | ||||
| -rw-r--r-- | external/bsd/bind/include/dns/enumtype.h | 150 | ||||
| -rw-r--r-- | external/bsd/bind/include/dns/rdatastruct.h | 2055 | ||||
| -rw-r--r-- | external/bsd/bind/include/isc/atomic.h | 46 | ||||
| -rw-r--r-- | external/bsd/bind/include/isc/platform.h | 339 | ||||
| -rw-r--r-- | external/bsd/bind/include/lwres/netdb.h | 520 | ||||
| -rw-r--r-- | external/bsd/bind/include/lwres/platform.h | 120 |
9 files changed, 5373 insertions, 0 deletions
diff --git a/external/bsd/bind/include/config.h b/external/bsd/bind/include/config.h new file mode 100644 index 00000000000..b4c32e36246 --- /dev/null +++ b/external/bsd/bind/include/config.h @@ -0,0 +1,350 @@ +/* config.h. Generated from config.h.in by configure. */ +/* config.h.in. Generated from configure.in by autoheader. */ +/* + * Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* Id: config.h.in,v 1.106.40.6 2009/03/13 05:35:43 marka Exp */ + +/*! \file */ + +/*** + *** This file is not to be included by any public header files, because + *** it does not get installed. + ***/ + +/** define on DEC OSF to enable 4.4BSD style sa_len support */ +/* #undef _SOCKADDR_LEN */ + +/** define if your system needs pthread_init() before using pthreads */ +/* #undef NEED_PTHREAD_INIT */ + +/* + * Apparently, the combination of "no threads" but HAVE_SIGWAIT + * has not been well tested. Applications end up killing themselves + * instead of exiting gracefully. + */ +#ifdef ISC_PLATFORM_USETHREADS +/** define if your system has sigwait() */ +#define HAVE_SIGWAIT 1 +#endif /* ISC_PLATFORM_USETHREADS */ + +/** define if sigwait() is the UnixWare flavor */ +/* #undef HAVE_UNIXWARE_SIGWAIT */ + +/** define on Solaris to get sigwait() to work using pthreads semantics */ +/* #undef _POSIX_PTHREAD_SEMANTICS */ + +/** define if LinuxThreads is in use */ +/* #undef HAVE_LINUXTHREADS */ + +/** define if sysconf() is available */ +#define HAVE_SYSCONF 1 + +/** define if sysctlbyname() is available */ +#define HAVE_SYSCTLBYNAME 1 + +/** define if catgets() is available */ +#define HAVE_CATGETS 1 + +/** define if getifaddrs() exists */ +#define HAVE_GETIFADDRS 1 + +/** define if you have the NET_RT_IFLIST sysctl variable and sys/sysctl.h */ +#define HAVE_IFLIST_SYSCTL 1 + +/** define if chroot() is available */ +#define HAVE_CHROOT 1 + +/** define if tzset() is available */ +#define HAVE_TZSET 1 + +/** define if struct addrinfo exists */ +#define HAVE_ADDRINFO 1 + +/** define if getaddrinfo() exists */ +#define HAVE_GETADDRINFO 1 + +/** define if gai_strerror() exists */ +#define HAVE_GAISTRERROR 1 + +/** define if arc4random() exists */ +#define HAVE_ARC4RANDOM 1 + +/** + * define if pthread_setconcurrency() should be called to tell the + * OS how many threads we might want to run. + */ +/* #undef CALL_PTHREAD_SETCONCURRENCY */ + +#if 0 /* We'll define this in each Makefile as necessary */ +/** define if IPv6 is not disabled */ +#define WANT_IPV6 1 +#endif + +/** define if flockfile() is available */ +#define HAVE_FLOCKFILE 1 + +/** define if getc_unlocked() is available */ +#define HAVE_GETCUNLOCKED 1 + +/** Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */ +/* #undef SHUTUP_SPUTAUX */ +#ifdef SHUTUP_SPUTAUX +struct __sFILE; +extern __inline int __sputaux(int _c, struct __sFILE *_p); +#endif + +/** Shut up warnings about missing sigwait prototype on BSD/OS 4.0* */ +/* #undef SHUTUP_SIGWAIT */ +#ifdef SHUTUP_SIGWAIT +int sigwait(const unsigned int *set, int *sig); +#endif + +/** Shut up warnings from gcc -Wcast-qual on BSD/OS 4.1. */ +/* #undef SHUTUP_STDARG_CAST */ +#if defined(SHUTUP_STDARG_CAST) && defined(__GNUC__) +#include <stdarg.h> /** Grr. Must be included *every time*. */ +/** + * The silly continuation line is to keep configure from + * commenting out the #undef. + */ + +#undef \ + va_start +#define va_start(ap, last) \ + do { \ + union { const void *konst; long *var; } _u; \ + _u.konst = &(last); \ + ap = (va_list)(_u.var + __va_words(__typeof(last))); \ + } while (0) +#endif /** SHUTUP_STDARG_CAST && __GNUC__ */ + +/** define if the system has a random number generating device */ +#define PATH_RANDOMDEV "/dev/random" + +/** define if pthread_attr_getstacksize() is available */ +#define HAVE_PTHREAD_ATTR_GETSTACKSIZE 1 + +/** define if pthread_attr_setstacksize() is available */ +#define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1 + +/** define if you have strerror in the C library. */ +#define HAVE_STRERROR 1 + +/** Define if you are running under Compaq TruCluster. */ +/* #undef HAVE_TRUCLUSTER */ + +/* Define if OpenSSL includes DSA support */ +#define HAVE_OPENSSL_DSA 1 + +/* Define to the length type used by the socket API (socklen_t, size_t, int). */ +#define ISC_SOCKADDR_LEN_T socklen_t + +/* Define if threads need PTHREAD_SCOPE_SYSTEM */ +/* #undef NEED_PTHREAD_SCOPE_SYSTEM */ + +/* Define if recvmsg() does not meet all of the BSD socket API specifications. + */ +/* #undef BROKEN_RECVMSG */ + +/* Define if you cannot bind() before connect() for TCP sockets. */ +/* #undef BROKEN_TCP_BIND_BEFORE_CONNECT */ + +/* Define to enable "rrset-order fixed" syntax. */ +#define DNS_RDATASET_FIXED 1 + +/* Define to 1 if you have the <gssapi/gssapi.h> header file. */ +#define HAVE_GSSAPI_GSSAPI_H 1 + +/* Define to 1 if you have the <gssapi.h> header file. */ +#define HAVE_GSSAPI_H 1 + +/* Define to 1 if you have the <inttypes.h> header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the `c' library (-lc). */ +/* #undef HAVE_LIBC */ + +/* Define to 1 if you have the `cap' library (-lcap). */ +/* #undef HAVE_LIBCAP */ + +/* Define to 1 if you have the `c_r' library (-lc_r). */ +/* #undef HAVE_LIBC_R */ + +/* Define to 1 if you have the `nsl' library (-lnsl). */ +/* #undef HAVE_LIBNSL */ + +/* Define to 1 if you have the `pthread' library (-lpthread). */ +/* #undef HAVE_LIBPTHREAD */ + +/* Define to 1 if you have the `scf' library (-lscf). */ +/* #undef HAVE_LIBSCF */ + +/* Define to 1 if you have the `socket' library (-lsocket). */ +/* #undef HAVE_LIBSOCKET */ + +/* Define to 1 if you have the `thr' library (-lthr). */ +/* #undef HAVE_LIBTHR */ + +/* Define if libxml2 was found */ +/* #undef HAVE_LIBXML2 */ + +/* Define to 1 if you have the <linux/capability.h> header file. */ +/* #undef HAVE_LINUX_CAPABILITY_H */ + +/* Define to 1 if you have the <locale.h> header file. */ +#define HAVE_LOCALE_H 1 + +/* Define to 1 if you have the <memory.h> header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the <dlfcn.h> header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have the <fcntl.h> header file. */ +#define HAVE_FCNTL_H 1 + +/* Define to 1 if you have the `nanosleep' function. */ +#define HAVE_NANOSLEEP 1 + +/* Define to 1 if you have the <net/if6.h> header file. */ +/* #undef HAVE_NET_IF6_H */ + +/* Define to 1 if you have the `setlocale' function. */ +#define HAVE_SETLOCALE 1 + +/* Define to 1 if you have the <stdint.h> header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the <stdlib.h> header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the <strings.h> header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the <string.h> header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the <sys/capability.h> header file. */ +/* #undef HAVE_SYS_CAPABILITY_H */ + +/* Define to 1 if you have the <sys/devpoll.h> header file. */ +/* #undef HAVE_SYS_DEVPOLL_H */ + +/* Define to 1 if you have the <sys/dyntune.h> header file. */ +/* #undef HAVE_SYS_DYNTUNE_H */ + +/* Define to 1 if you have the <sys/param.h> header file. */ +#define HAVE_SYS_PARAM_H 1 + +/* Define to 1 if you have the <sys/prctl.h> header file. */ +/* #undef HAVE_SYS_PRCTL_H */ + +/* Define to 1 if you have the <sys/select.h> header file. */ +#define HAVE_SYS_SELECT_H 1 + +/* Define to 1 if you have the <sys/sockio.h> header file. */ +#define HAVE_SYS_SOCKIO_H 1 + +/* Define to 1 if you have the <sys/stat.h> header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the <sys/sysctl.h> header file. */ +#define HAVE_SYS_SYSCTL_H 1 + +/* Define to 1 if you have the <sys/time.h> header file. */ +#define HAVE_SYS_TIME_H 1 + +/* Define to 1 if you have the <sys/types.h> header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the <sys/un.h> header file. */ +#define HAVE_SYS_UN_H 1 + +/* Define if running under Compaq TruCluster */ +/* #undef HAVE_TRUCLUSTER */ + +/* Define to 1 if you have the <unistd.h> header file. */ +#define HAVE_UNISTD_H 1 + +/* Defined if extern char *optarg is not declared. */ +/* #undef NEED_OPTARG */ + +/* Define if connect does not honour the permission on the UNIX domain socket. + */ +/* #undef NEED_SECURE_DIRECTORY */ + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "" + +/* Sets which flag to pass to open/fcntl to make non-blocking + (O_NDELAY/O_NONBLOCK). */ +#define PORT_NONBLOCK O_NONBLOCK + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */ +#define TIME_WITH_SYS_TIME 1 + +/* Defined if you need to use ioctl(FIONBIO) instead a fcntl call to make + non-blocking. */ +/* #undef USE_FIONBIO_IOCTL */ + +/* define if idnkit support is to be included. */ +/* #undef WITH_IDN */ + +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ +#include <sys/endian.h> +#if _BYTE_ORDER == _BIG_ENDIAN +#define WORDS_BIGENDIAN +#endif + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef __cplusplus +/* #undef inline */ +#endif + +/* Define to `unsigned int' if <sys/types.h> does not define. */ +/* #undef size_t */ + +/* Define to `int' if <sys/types.h> does not define. */ +/* #undef ssize_t */ + +/* Define to `unsigned long' if <sys/types.h> does not define. */ +/* #undef uintptr_t */ + +/* Define to empty if the keyword `volatile' does not work. Warning: valid + code using `volatile' can become incorrect without. Disable with care. */ +/* #undef volatile */ diff --git a/external/bsd/bind/include/dns/code.h b/external/bsd/bind/include/dns/code.h new file mode 100644 index 00000000000..19ff7a81eb4 --- /dev/null +++ b/external/bsd/bind/include/dns/code.h @@ -0,0 +1,1745 @@ +/* + * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/*************** + *************** + *************** THIS FILE IS AUTOMATICALLY GENERATED BY gen.c. + *************** DO NOT EDIT! + *************** + ***************/ + +/*! \file */ + +#ifndef DNS_CODE_H +#define DNS_CODE_H 1 + +#include <isc/boolean.h> +#include <isc/result.h> + +#include <dns/name.h> + +#include "rdata/in_1/a_1.c" +#include "rdata/ch_3/a_1.c" +#include "rdata/hs_4/a_1.c" +#include "rdata/generic/ns_2.c" +#include "rdata/generic/md_3.c" +#include "rdata/generic/mf_4.c" +#include "rdata/generic/cname_5.c" +#include "rdata/generic/soa_6.c" +#include "rdata/generic/mb_7.c" +#include "rdata/generic/mg_8.c" +#include "rdata/generic/mr_9.c" +#include "rdata/generic/null_10.c" +#include "rdata/in_1/wks_11.c" +#include "rdata/generic/ptr_12.c" +#include "rdata/generic/hinfo_13.c" +#include "rdata/generic/minfo_14.c" +#include "rdata/generic/mx_15.c" +#include "rdata/generic/txt_16.c" +#include "rdata/generic/rp_17.c" +#include "rdata/generic/afsdb_18.c" +#include "rdata/generic/x25_19.c" +#include "rdata/generic/isdn_20.c" +#include "rdata/generic/rt_21.c" +#include "rdata/in_1/nsap_22.c" +#include "rdata/in_1/nsap-ptr_23.c" +#include "rdata/generic/sig_24.c" +#include "rdata/generic/key_25.c" +#include "rdata/in_1/px_26.c" +#include "rdata/generic/gpos_27.c" +#include "rdata/in_1/aaaa_28.c" +#include "rdata/generic/loc_29.c" +#include "rdata/generic/nxt_30.c" +#include "rdata/in_1/srv_33.c" +#include "rdata/in_1/naptr_35.c" +#include "rdata/in_1/kx_36.c" +#include "rdata/generic/cert_37.c" +#include "rdata/in_1/a6_38.c" +#include "rdata/generic/dname_39.c" +#include "rdata/generic/opt_41.c" +#include "rdata/in_1/apl_42.c" +#include "rdata/generic/ds_43.c" +#include "rdata/generic/sshfp_44.c" +#include "rdata/generic/ipseckey_45.c" +#include "rdata/generic/rrsig_46.c" +#include "rdata/generic/nsec_47.c" +#include "rdata/generic/dnskey_48.c" +#include "rdata/in_1/dhcid_49.c" +#include "rdata/generic/nsec3_50.c" +#include "rdata/generic/nsec3param_51.c" +#include "rdata/generic/spf_99.c" +#include "rdata/generic/unspec_103.c" +#include "rdata/generic/tkey_249.c" +#include "rdata/any_255/tsig_250.c" +#include "rdata/generic/dlv_32769.c" + + + +#define FROMTEXTSWITCH \ + switch (type) { \ + case 1: switch (rdclass) { \ + case 1: result = fromtext_in_a(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 3: result = fromtext_ch_a(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 4: result = fromtext_hs_a(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 2: result = fromtext_ns(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 3: result = fromtext_md(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 4: result = fromtext_mf(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 5: result = fromtext_cname(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 6: result = fromtext_soa(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 7: result = fromtext_mb(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 8: result = fromtext_mg(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 9: result = fromtext_mr(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 10: result = fromtext_null(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 11: switch (rdclass) { \ + case 1: result = fromtext_in_wks(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 12: result = fromtext_ptr(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 13: result = fromtext_hinfo(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 14: result = fromtext_minfo(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 15: result = fromtext_mx(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 16: result = fromtext_txt(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 17: result = fromtext_rp(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 18: result = fromtext_afsdb(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 19: result = fromtext_x25(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 20: result = fromtext_isdn(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 21: result = fromtext_rt(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 22: switch (rdclass) { \ + case 1: result = fromtext_in_nsap(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 23: switch (rdclass) { \ + case 1: result = fromtext_in_nsap_ptr(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 24: result = fromtext_sig(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 25: result = fromtext_key(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 26: switch (rdclass) { \ + case 1: result = fromtext_in_px(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 27: result = fromtext_gpos(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 28: switch (rdclass) { \ + case 1: result = fromtext_in_aaaa(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 29: result = fromtext_loc(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 30: result = fromtext_nxt(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 33: switch (rdclass) { \ + case 1: result = fromtext_in_srv(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 35: switch (rdclass) { \ + case 1: result = fromtext_in_naptr(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 36: switch (rdclass) { \ + case 1: result = fromtext_in_kx(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 37: result = fromtext_cert(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 38: switch (rdclass) { \ + case 1: result = fromtext_in_a6(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 39: result = fromtext_dname(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 41: result = fromtext_opt(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 42: switch (rdclass) { \ + case 1: result = fromtext_in_apl(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 43: result = fromtext_ds(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 44: result = fromtext_sshfp(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 45: result = fromtext_ipseckey(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 46: result = fromtext_rrsig(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 47: result = fromtext_nsec(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 48: result = fromtext_dnskey(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 49: switch (rdclass) { \ + case 1: result = fromtext_in_dhcid(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 50: result = fromtext_nsec3(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 51: result = fromtext_nsec3param(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 99: result = fromtext_spf(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 103: result = fromtext_unspec(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 249: result = fromtext_tkey(rdclass, type, lexer, origin, options, target, callbacks); break; \ + case 250: switch (rdclass) { \ + case 255: result = fromtext_any_tsig(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } \ + break; \ + case 32769: result = fromtext_dlv(rdclass, type, lexer, origin, options, target, callbacks); break; \ + default: result = DNS_R_UNKNOWN; break; \ + } + +#define TOTEXTSWITCH \ + switch (rdata->type) { \ + case 1: switch (rdata->rdclass) { \ + case 1: result = totext_in_a(rdata, tctx, target); break; \ + case 3: result = totext_ch_a(rdata, tctx, target); break; \ + case 4: result = totext_hs_a(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 2: result = totext_ns(rdata, tctx, target); break; \ + case 3: result = totext_md(rdata, tctx, target); break; \ + case 4: result = totext_mf(rdata, tctx, target); break; \ + case 5: result = totext_cname(rdata, tctx, target); break; \ + case 6: result = totext_soa(rdata, tctx, target); break; \ + case 7: result = totext_mb(rdata, tctx, target); break; \ + case 8: result = totext_mg(rdata, tctx, target); break; \ + case 9: result = totext_mr(rdata, tctx, target); break; \ + case 10: result = totext_null(rdata, tctx, target); break; \ + case 11: switch (rdata->rdclass) { \ + case 1: result = totext_in_wks(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 12: result = totext_ptr(rdata, tctx, target); break; \ + case 13: result = totext_hinfo(rdata, tctx, target); break; \ + case 14: result = totext_minfo(rdata, tctx, target); break; \ + case 15: result = totext_mx(rdata, tctx, target); break; \ + case 16: result = totext_txt(rdata, tctx, target); break; \ + case 17: result = totext_rp(rdata, tctx, target); break; \ + case 18: result = totext_afsdb(rdata, tctx, target); break; \ + case 19: result = totext_x25(rdata, tctx, target); break; \ + case 20: result = totext_isdn(rdata, tctx, target); break; \ + case 21: result = totext_rt(rdata, tctx, target); break; \ + case 22: switch (rdata->rdclass) { \ + case 1: result = totext_in_nsap(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 23: switch (rdata->rdclass) { \ + case 1: result = totext_in_nsap_ptr(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 24: result = totext_sig(rdata, tctx, target); break; \ + case 25: result = totext_key(rdata, tctx, target); break; \ + case 26: switch (rdata->rdclass) { \ + case 1: result = totext_in_px(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 27: result = totext_gpos(rdata, tctx, target); break; \ + case 28: switch (rdata->rdclass) { \ + case 1: result = totext_in_aaaa(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 29: result = totext_loc(rdata, tctx, target); break; \ + case 30: result = totext_nxt(rdata, tctx, target); break; \ + case 33: switch (rdata->rdclass) { \ + case 1: result = totext_in_srv(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 35: switch (rdata->rdclass) { \ + case 1: result = totext_in_naptr(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 36: switch (rdata->rdclass) { \ + case 1: result = totext_in_kx(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 37: result = totext_cert(rdata, tctx, target); break; \ + case 38: switch (rdata->rdclass) { \ + case 1: result = totext_in_a6(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 39: result = totext_dname(rdata, tctx, target); break; \ + case 41: result = totext_opt(rdata, tctx, target); break; \ + case 42: switch (rdata->rdclass) { \ + case 1: result = totext_in_apl(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 43: result = totext_ds(rdata, tctx, target); break; \ + case 44: result = totext_sshfp(rdata, tctx, target); break; \ + case 45: result = totext_ipseckey(rdata, tctx, target); break; \ + case 46: result = totext_rrsig(rdata, tctx, target); break; \ + case 47: result = totext_nsec(rdata, tctx, target); break; \ + case 48: result = totext_dnskey(rdata, tctx, target); break; \ + case 49: switch (rdata->rdclass) { \ + case 1: result = totext_in_dhcid(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 50: result = totext_nsec3(rdata, tctx, target); break; \ + case 51: result = totext_nsec3param(rdata, tctx, target); break; \ + case 99: result = totext_spf(rdata, tctx, target); break; \ + case 103: result = totext_unspec(rdata, tctx, target); break; \ + case 249: result = totext_tkey(rdata, tctx, target); break; \ + case 250: switch (rdata->rdclass) { \ + case 255: result = totext_any_tsig(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 32769: result = totext_dlv(rdata, tctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } + +#define FROMWIRESWITCH \ + switch (type) { \ + case 1: switch (rdclass) { \ + case 1: result = fromwire_in_a(rdclass, type, source, dctx, options, target); break; \ + case 3: result = fromwire_ch_a(rdclass, type, source, dctx, options, target); break; \ + case 4: result = fromwire_hs_a(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 2: result = fromwire_ns(rdclass, type, source, dctx, options, target); break; \ + case 3: result = fromwire_md(rdclass, type, source, dctx, options, target); break; \ + case 4: result = fromwire_mf(rdclass, type, source, dctx, options, target); break; \ + case 5: result = fromwire_cname(rdclass, type, source, dctx, options, target); break; \ + case 6: result = fromwire_soa(rdclass, type, source, dctx, options, target); break; \ + case 7: result = fromwire_mb(rdclass, type, source, dctx, options, target); break; \ + case 8: result = fromwire_mg(rdclass, type, source, dctx, options, target); break; \ + case 9: result = fromwire_mr(rdclass, type, source, dctx, options, target); break; \ + case 10: result = fromwire_null(rdclass, type, source, dctx, options, target); break; \ + case 11: switch (rdclass) { \ + case 1: result = fromwire_in_wks(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 12: result = fromwire_ptr(rdclass, type, source, dctx, options, target); break; \ + case 13: result = fromwire_hinfo(rdclass, type, source, dctx, options, target); break; \ + case 14: result = fromwire_minfo(rdclass, type, source, dctx, options, target); break; \ + case 15: result = fromwire_mx(rdclass, type, source, dctx, options, target); break; \ + case 16: result = fromwire_txt(rdclass, type, source, dctx, options, target); break; \ + case 17: result = fromwire_rp(rdclass, type, source, dctx, options, target); break; \ + case 18: result = fromwire_afsdb(rdclass, type, source, dctx, options, target); break; \ + case 19: result = fromwire_x25(rdclass, type, source, dctx, options, target); break; \ + case 20: result = fromwire_isdn(rdclass, type, source, dctx, options, target); break; \ + case 21: result = fromwire_rt(rdclass, type, source, dctx, options, target); break; \ + case 22: switch (rdclass) { \ + case 1: result = fromwire_in_nsap(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 23: switch (rdclass) { \ + case 1: result = fromwire_in_nsap_ptr(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 24: result = fromwire_sig(rdclass, type, source, dctx, options, target); break; \ + case 25: result = fromwire_key(rdclass, type, source, dctx, options, target); break; \ + case 26: switch (rdclass) { \ + case 1: result = fromwire_in_px(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 27: result = fromwire_gpos(rdclass, type, source, dctx, options, target); break; \ + case 28: switch (rdclass) { \ + case 1: result = fromwire_in_aaaa(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 29: result = fromwire_loc(rdclass, type, source, dctx, options, target); break; \ + case 30: result = fromwire_nxt(rdclass, type, source, dctx, options, target); break; \ + case 33: switch (rdclass) { \ + case 1: result = fromwire_in_srv(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 35: switch (rdclass) { \ + case 1: result = fromwire_in_naptr(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 36: switch (rdclass) { \ + case 1: result = fromwire_in_kx(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 37: result = fromwire_cert(rdclass, type, source, dctx, options, target); break; \ + case 38: switch (rdclass) { \ + case 1: result = fromwire_in_a6(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 39: result = fromwire_dname(rdclass, type, source, dctx, options, target); break; \ + case 41: result = fromwire_opt(rdclass, type, source, dctx, options, target); break; \ + case 42: switch (rdclass) { \ + case 1: result = fromwire_in_apl(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 43: result = fromwire_ds(rdclass, type, source, dctx, options, target); break; \ + case 44: result = fromwire_sshfp(rdclass, type, source, dctx, options, target); break; \ + case 45: result = fromwire_ipseckey(rdclass, type, source, dctx, options, target); break; \ + case 46: result = fromwire_rrsig(rdclass, type, source, dctx, options, target); break; \ + case 47: result = fromwire_nsec(rdclass, type, source, dctx, options, target); break; \ + case 48: result = fromwire_dnskey(rdclass, type, source, dctx, options, target); break; \ + case 49: switch (rdclass) { \ + case 1: result = fromwire_in_dhcid(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 50: result = fromwire_nsec3(rdclass, type, source, dctx, options, target); break; \ + case 51: result = fromwire_nsec3param(rdclass, type, source, dctx, options, target); break; \ + case 99: result = fromwire_spf(rdclass, type, source, dctx, options, target); break; \ + case 103: result = fromwire_unspec(rdclass, type, source, dctx, options, target); break; \ + case 249: result = fromwire_tkey(rdclass, type, source, dctx, options, target); break; \ + case 250: switch (rdclass) { \ + case 255: result = fromwire_any_tsig(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 32769: result = fromwire_dlv(rdclass, type, source, dctx, options, target); break; \ + default: use_default = ISC_TRUE; break; \ + } + +#define TOWIRESWITCH \ + switch (rdata->type) { \ + case 1: switch (rdata->rdclass) { \ + case 1: result = towire_in_a(rdata, cctx, target); break; \ + case 3: result = towire_ch_a(rdata, cctx, target); break; \ + case 4: result = towire_hs_a(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 2: result = towire_ns(rdata, cctx, target); break; \ + case 3: result = towire_md(rdata, cctx, target); break; \ + case 4: result = towire_mf(rdata, cctx, target); break; \ + case 5: result = towire_cname(rdata, cctx, target); break; \ + case 6: result = towire_soa(rdata, cctx, target); break; \ + case 7: result = towire_mb(rdata, cctx, target); break; \ + case 8: result = towire_mg(rdata, cctx, target); break; \ + case 9: result = towire_mr(rdata, cctx, target); break; \ + case 10: result = towire_null(rdata, cctx, target); break; \ + case 11: switch (rdata->rdclass) { \ + case 1: result = towire_in_wks(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 12: result = towire_ptr(rdata, cctx, target); break; \ + case 13: result = towire_hinfo(rdata, cctx, target); break; \ + case 14: result = towire_minfo(rdata, cctx, target); break; \ + case 15: result = towire_mx(rdata, cctx, target); break; \ + case 16: result = towire_txt(rdata, cctx, target); break; \ + case 17: result = towire_rp(rdata, cctx, target); break; \ + case 18: result = towire_afsdb(rdata, cctx, target); break; \ + case 19: result = towire_x25(rdata, cctx, target); break; \ + case 20: result = towire_isdn(rdata, cctx, target); break; \ + case 21: result = towire_rt(rdata, cctx, target); break; \ + case 22: switch (rdata->rdclass) { \ + case 1: result = towire_in_nsap(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 23: switch (rdata->rdclass) { \ + case 1: result = towire_in_nsap_ptr(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 24: result = towire_sig(rdata, cctx, target); break; \ + case 25: result = towire_key(rdata, cctx, target); break; \ + case 26: switch (rdata->rdclass) { \ + case 1: result = towire_in_px(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 27: result = towire_gpos(rdata, cctx, target); break; \ + case 28: switch (rdata->rdclass) { \ + case 1: result = towire_in_aaaa(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 29: result = towire_loc(rdata, cctx, target); break; \ + case 30: result = towire_nxt(rdata, cctx, target); break; \ + case 33: switch (rdata->rdclass) { \ + case 1: result = towire_in_srv(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 35: switch (rdata->rdclass) { \ + case 1: result = towire_in_naptr(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 36: switch (rdata->rdclass) { \ + case 1: result = towire_in_kx(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 37: result = towire_cert(rdata, cctx, target); break; \ + case 38: switch (rdata->rdclass) { \ + case 1: result = towire_in_a6(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 39: result = towire_dname(rdata, cctx, target); break; \ + case 41: result = towire_opt(rdata, cctx, target); break; \ + case 42: switch (rdata->rdclass) { \ + case 1: result = towire_in_apl(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 43: result = towire_ds(rdata, cctx, target); break; \ + case 44: result = towire_sshfp(rdata, cctx, target); break; \ + case 45: result = towire_ipseckey(rdata, cctx, target); break; \ + case 46: result = towire_rrsig(rdata, cctx, target); break; \ + case 47: result = towire_nsec(rdata, cctx, target); break; \ + case 48: result = towire_dnskey(rdata, cctx, target); break; \ + case 49: switch (rdata->rdclass) { \ + case 1: result = towire_in_dhcid(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 50: result = towire_nsec3(rdata, cctx, target); break; \ + case 51: result = towire_nsec3param(rdata, cctx, target); break; \ + case 99: result = towire_spf(rdata, cctx, target); break; \ + case 103: result = towire_unspec(rdata, cctx, target); break; \ + case 249: result = towire_tkey(rdata, cctx, target); break; \ + case 250: switch (rdata->rdclass) { \ + case 255: result = towire_any_tsig(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 32769: result = towire_dlv(rdata, cctx, target); break; \ + default: use_default = ISC_TRUE; break; \ + } + +#define COMPARESWITCH \ + switch (rdata1->type) { \ + case 1: switch (rdata1->rdclass) { \ + case 1: result = compare_in_a(rdata1, rdata2); break; \ + case 3: result = compare_ch_a(rdata1, rdata2); break; \ + case 4: result = compare_hs_a(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 2: result = compare_ns(rdata1, rdata2); break; \ + case 3: result = compare_md(rdata1, rdata2); break; \ + case 4: result = compare_mf(rdata1, rdata2); break; \ + case 5: result = compare_cname(rdata1, rdata2); break; \ + case 6: result = compare_soa(rdata1, rdata2); break; \ + case 7: result = compare_mb(rdata1, rdata2); break; \ + case 8: result = compare_mg(rdata1, rdata2); break; \ + case 9: result = compare_mr(rdata1, rdata2); break; \ + case 10: result = compare_null(rdata1, rdata2); break; \ + case 11: switch (rdata1->rdclass) { \ + case 1: result = compare_in_wks(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 12: result = compare_ptr(rdata1, rdata2); break; \ + case 13: result = compare_hinfo(rdata1, rdata2); break; \ + case 14: result = compare_minfo(rdata1, rdata2); break; \ + case 15: result = compare_mx(rdata1, rdata2); break; \ + case 16: result = compare_txt(rdata1, rdata2); break; \ + case 17: result = compare_rp(rdata1, rdata2); break; \ + case 18: result = compare_afsdb(rdata1, rdata2); break; \ + case 19: result = compare_x25(rdata1, rdata2); break; \ + case 20: result = compare_isdn(rdata1, rdata2); break; \ + case 21: result = compare_rt(rdata1, rdata2); break; \ + case 22: switch (rdata1->rdclass) { \ + case 1: result = compare_in_nsap(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 23: switch (rdata1->rdclass) { \ + case 1: result = compare_in_nsap_ptr(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 24: result = compare_sig(rdata1, rdata2); break; \ + case 25: result = compare_key(rdata1, rdata2); break; \ + case 26: switch (rdata1->rdclass) { \ + case 1: result = compare_in_px(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 27: result = compare_gpos(rdata1, rdata2); break; \ + case 28: switch (rdata1->rdclass) { \ + case 1: result = compare_in_aaaa(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 29: result = compare_loc(rdata1, rdata2); break; \ + case 30: result = compare_nxt(rdata1, rdata2); break; \ + case 33: switch (rdata1->rdclass) { \ + case 1: result = compare_in_srv(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 35: switch (rdata1->rdclass) { \ + case 1: result = compare_in_naptr(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 36: switch (rdata1->rdclass) { \ + case 1: result = compare_in_kx(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 37: result = compare_cert(rdata1, rdata2); break; \ + case 38: switch (rdata1->rdclass) { \ + case 1: result = compare_in_a6(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 39: result = compare_dname(rdata1, rdata2); break; \ + case 41: result = compare_opt(rdata1, rdata2); break; \ + case 42: switch (rdata1->rdclass) { \ + case 1: result = compare_in_apl(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 43: result = compare_ds(rdata1, rdata2); break; \ + case 44: result = compare_sshfp(rdata1, rdata2); break; \ + case 45: result = compare_ipseckey(rdata1, rdata2); break; \ + case 46: result = compare_rrsig(rdata1, rdata2); break; \ + case 47: result = compare_nsec(rdata1, rdata2); break; \ + case 48: result = compare_dnskey(rdata1, rdata2); break; \ + case 49: switch (rdata1->rdclass) { \ + case 1: result = compare_in_dhcid(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 50: result = compare_nsec3(rdata1, rdata2); break; \ + case 51: result = compare_nsec3param(rdata1, rdata2); break; \ + case 99: result = compare_spf(rdata1, rdata2); break; \ + case 103: result = compare_unspec(rdata1, rdata2); break; \ + case 249: result = compare_tkey(rdata1, rdata2); break; \ + case 250: switch (rdata1->rdclass) { \ + case 255: result = compare_any_tsig(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 32769: result = compare_dlv(rdata1, rdata2); break; \ + default: use_default = ISC_TRUE; break; \ + } + +#define FROMSTRUCTSWITCH \ + switch (type) { \ + case 1: switch (rdclass) { \ + case 1: result = fromstruct_in_a(rdclass, type, source, target); break; \ + case 3: result = fromstruct_ch_a(rdclass, type, source, target); break; \ + case 4: result = fromstruct_hs_a(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 2: result = fromstruct_ns(rdclass, type, source, target); break; \ + case 3: result = fromstruct_md(rdclass, type, source, target); break; \ + case 4: result = fromstruct_mf(rdclass, type, source, target); break; \ + case 5: result = fromstruct_cname(rdclass, type, source, target); break; \ + case 6: result = fromstruct_soa(rdclass, type, source, target); break; \ + case 7: result = fromstruct_mb(rdclass, type, source, target); break; \ + case 8: result = fromstruct_mg(rdclass, type, source, target); break; \ + case 9: result = fromstruct_mr(rdclass, type, source, target); break; \ + case 10: result = fromstruct_null(rdclass, type, source, target); break; \ + case 11: switch (rdclass) { \ + case 1: result = fromstruct_in_wks(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 12: result = fromstruct_ptr(rdclass, type, source, target); break; \ + case 13: result = fromstruct_hinfo(rdclass, type, source, target); break; \ + case 14: result = fromstruct_minfo(rdclass, type, source, target); break; \ + case 15: result = fromstruct_mx(rdclass, type, source, target); break; \ + case 16: result = fromstruct_txt(rdclass, type, source, target); break; \ + case 17: result = fromstruct_rp(rdclass, type, source, target); break; \ + case 18: result = fromstruct_afsdb(rdclass, type, source, target); break; \ + case 19: result = fromstruct_x25(rdclass, type, source, target); break; \ + case 20: result = fromstruct_isdn(rdclass, type, source, target); break; \ + case 21: result = fromstruct_rt(rdclass, type, source, target); break; \ + case 22: switch (rdclass) { \ + case 1: result = fromstruct_in_nsap(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 23: switch (rdclass) { \ + case 1: result = fromstruct_in_nsap_ptr(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 24: result = fromstruct_sig(rdclass, type, source, target); break; \ + case 25: result = fromstruct_key(rdclass, type, source, target); break; \ + case 26: switch (rdclass) { \ + case 1: result = fromstruct_in_px(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 27: result = fromstruct_gpos(rdclass, type, source, target); break; \ + case 28: switch (rdclass) { \ + case 1: result = fromstruct_in_aaaa(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 29: result = fromstruct_loc(rdclass, type, source, target); break; \ + case 30: result = fromstruct_nxt(rdclass, type, source, target); break; \ + case 33: switch (rdclass) { \ + case 1: result = fromstruct_in_srv(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 35: switch (rdclass) { \ + case 1: result = fromstruct_in_naptr(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 36: switch (rdclass) { \ + case 1: result = fromstruct_in_kx(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 37: result = fromstruct_cert(rdclass, type, source, target); break; \ + case 38: switch (rdclass) { \ + case 1: result = fromstruct_in_a6(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 39: result = fromstruct_dname(rdclass, type, source, target); break; \ + case 41: result = fromstruct_opt(rdclass, type, source, target); break; \ + case 42: switch (rdclass) { \ + case 1: result = fromstruct_in_apl(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 43: result = fromstruct_ds(rdclass, type, source, target); break; \ + case 44: result = fromstruct_sshfp(rdclass, type, source, target); break; \ + case 45: result = fromstruct_ipseckey(rdclass, type, source, target); break; \ + case 46: result = fromstruct_rrsig(rdclass, type, source, target); break; \ + case 47: result = fromstruct_nsec(rdclass, type, source, target); break; \ + case 48: result = fromstruct_dnskey(rdclass, type, source, target); break; \ + case 49: switch (rdclass) { \ + case 1: result = fromstruct_in_dhcid(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 50: result = fromstruct_nsec3(rdclass, type, source, target); break; \ + case 51: result = fromstruct_nsec3param(rdclass, type, source, target); break; \ + case 99: result = fromstruct_spf(rdclass, type, source, target); break; \ + case 103: result = fromstruct_unspec(rdclass, type, source, target); break; \ + case 249: result = fromstruct_tkey(rdclass, type, source, target); break; \ + case 250: switch (rdclass) { \ + case 255: result = fromstruct_any_tsig(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 32769: result = fromstruct_dlv(rdclass, type, source, target); break; \ + default: use_default = ISC_TRUE; break; \ + } + +#define TOSTRUCTSWITCH \ + switch (rdata->type) { \ + case 1: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_a(rdata, target, mctx); break; \ + case 3: result = tostruct_ch_a(rdata, target, mctx); break; \ + case 4: result = tostruct_hs_a(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 2: result = tostruct_ns(rdata, target, mctx); break; \ + case 3: result = tostruct_md(rdata, target, mctx); break; \ + case 4: result = tostruct_mf(rdata, target, mctx); break; \ + case 5: result = tostruct_cname(rdata, target, mctx); break; \ + case 6: result = tostruct_soa(rdata, target, mctx); break; \ + case 7: result = tostruct_mb(rdata, target, mctx); break; \ + case 8: result = tostruct_mg(rdata, target, mctx); break; \ + case 9: result = tostruct_mr(rdata, target, mctx); break; \ + case 10: result = tostruct_null(rdata, target, mctx); break; \ + case 11: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_wks(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 12: result = tostruct_ptr(rdata, target, mctx); break; \ + case 13: result = tostruct_hinfo(rdata, target, mctx); break; \ + case 14: result = tostruct_minfo(rdata, target, mctx); break; \ + case 15: result = tostruct_mx(rdata, target, mctx); break; \ + case 16: result = tostruct_txt(rdata, target, mctx); break; \ + case 17: result = tostruct_rp(rdata, target, mctx); break; \ + case 18: result = tostruct_afsdb(rdata, target, mctx); break; \ + case 19: result = tostruct_x25(rdata, target, mctx); break; \ + case 20: result = tostruct_isdn(rdata, target, mctx); break; \ + case 21: result = tostruct_rt(rdata, target, mctx); break; \ + case 22: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_nsap(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 23: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_nsap_ptr(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 24: result = tostruct_sig(rdata, target, mctx); break; \ + case 25: result = tostruct_key(rdata, target, mctx); break; \ + case 26: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_px(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 27: result = tostruct_gpos(rdata, target, mctx); break; \ + case 28: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_aaaa(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 29: result = tostruct_loc(rdata, target, mctx); break; \ + case 30: result = tostruct_nxt(rdata, target, mctx); break; \ + case 33: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_srv(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 35: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_naptr(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 36: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_kx(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 37: result = tostruct_cert(rdata, target, mctx); break; \ + case 38: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_a6(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 39: result = tostruct_dname(rdata, target, mctx); break; \ + case 41: result = tostruct_opt(rdata, target, mctx); break; \ + case 42: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_apl(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 43: result = tostruct_ds(rdata, target, mctx); break; \ + case 44: result = tostruct_sshfp(rdata, target, mctx); break; \ + case 45: result = tostruct_ipseckey(rdata, target, mctx); break; \ + case 46: result = tostruct_rrsig(rdata, target, mctx); break; \ + case 47: result = tostruct_nsec(rdata, target, mctx); break; \ + case 48: result = tostruct_dnskey(rdata, target, mctx); break; \ + case 49: switch (rdata->rdclass) { \ + case 1: result = tostruct_in_dhcid(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 50: result = tostruct_nsec3(rdata, target, mctx); break; \ + case 51: result = tostruct_nsec3param(rdata, target, mctx); break; \ + case 99: result = tostruct_spf(rdata, target, mctx); break; \ + case 103: result = tostruct_unspec(rdata, target, mctx); break; \ + case 249: result = tostruct_tkey(rdata, target, mctx); break; \ + case 250: switch (rdata->rdclass) { \ + case 255: result = tostruct_any_tsig(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 32769: result = tostruct_dlv(rdata, target, mctx); break; \ + default: use_default = ISC_TRUE; break; \ + } + +#define FREESTRUCTSWITCH \ + switch (common->rdtype) { \ + case 1: switch (common->rdclass) { \ + case 1: freestruct_in_a(source); break; \ + case 3: freestruct_ch_a(source); break; \ + case 4: freestruct_hs_a(source); break; \ + default: break; \ + } \ + break; \ + case 2: freestruct_ns(source); break; \ + case 3: freestruct_md(source); break; \ + case 4: freestruct_mf(source); break; \ + case 5: freestruct_cname(source); break; \ + case 6: freestruct_soa(source); break; \ + case 7: freestruct_mb(source); break; \ + case 8: freestruct_mg(source); break; \ + case 9: freestruct_mr(source); break; \ + case 10: freestruct_null(source); break; \ + case 11: switch (common->rdclass) { \ + case 1: freestruct_in_wks(source); break; \ + default: break; \ + } \ + break; \ + case 12: freestruct_ptr(source); break; \ + case 13: freestruct_hinfo(source); break; \ + case 14: freestruct_minfo(source); break; \ + case 15: freestruct_mx(source); break; \ + case 16: freestruct_txt(source); break; \ + case 17: freestruct_rp(source); break; \ + case 18: freestruct_afsdb(source); break; \ + case 19: freestruct_x25(source); break; \ + case 20: freestruct_isdn(source); break; \ + case 21: freestruct_rt(source); break; \ + case 22: switch (common->rdclass) { \ + case 1: freestruct_in_nsap(source); break; \ + default: break; \ + } \ + break; \ + case 23: switch (common->rdclass) { \ + case 1: freestruct_in_nsap_ptr(source); break; \ + default: break; \ + } \ + break; \ + case 24: freestruct_sig(source); break; \ + case 25: freestruct_key(source); break; \ + case 26: switch (common->rdclass) { \ + case 1: freestruct_in_px(source); break; \ + default: break; \ + } \ + break; \ + case 27: freestruct_gpos(source); break; \ + case 28: switch (common->rdclass) { \ + case 1: freestruct_in_aaaa(source); break; \ + default: break; \ + } \ + break; \ + case 29: freestruct_loc(source); break; \ + case 30: freestruct_nxt(source); break; \ + case 33: switch (common->rdclass) { \ + case 1: freestruct_in_srv(source); break; \ + default: break; \ + } \ + break; \ + case 35: switch (common->rdclass) { \ + case 1: freestruct_in_naptr(source); break; \ + default: break; \ + } \ + break; \ + case 36: switch (common->rdclass) { \ + case 1: freestruct_in_kx(source); break; \ + default: break; \ + } \ + break; \ + case 37: freestruct_cert(source); break; \ + case 38: switch (common->rdclass) { \ + case 1: freestruct_in_a6(source); break; \ + default: break; \ + } \ + break; \ + case 39: freestruct_dname(source); break; \ + case 41: freestruct_opt(source); break; \ + case 42: switch (common->rdclass) { \ + case 1: freestruct_in_apl(source); break; \ + default: break; \ + } \ + break; \ + case 43: freestruct_ds(source); break; \ + case 44: freestruct_sshfp(source); break; \ + case 45: freestruct_ipseckey(source); break; \ + case 46: freestruct_rrsig(source); break; \ + case 47: freestruct_nsec(source); break; \ + case 48: freestruct_dnskey(source); break; \ + case 49: switch (common->rdclass) { \ + case 1: freestruct_in_dhcid(source); break; \ + default: break; \ + } \ + break; \ + case 50: freestruct_nsec3(source); break; \ + case 51: freestruct_nsec3param(source); break; \ + case 99: freestruct_spf(source); break; \ + case 103: freestruct_unspec(source); break; \ + case 249: freestruct_tkey(source); break; \ + case 250: switch (common->rdclass) { \ + case 255: freestruct_any_tsig(source); break; \ + default: break; \ + } \ + break; \ + case 32769: freestruct_dlv(source); break; \ + default: break; \ + } + +#define ADDITIONALDATASWITCH \ + switch (rdata->type) { \ + case 1: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_a(rdata, add, arg); break; \ + case 3: result = additionaldata_ch_a(rdata, add, arg); break; \ + case 4: result = additionaldata_hs_a(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 2: result = additionaldata_ns(rdata, add, arg); break; \ + case 3: result = additionaldata_md(rdata, add, arg); break; \ + case 4: result = additionaldata_mf(rdata, add, arg); break; \ + case 5: result = additionaldata_cname(rdata, add, arg); break; \ + case 6: result = additionaldata_soa(rdata, add, arg); break; \ + case 7: result = additionaldata_mb(rdata, add, arg); break; \ + case 8: result = additionaldata_mg(rdata, add, arg); break; \ + case 9: result = additionaldata_mr(rdata, add, arg); break; \ + case 10: result = additionaldata_null(rdata, add, arg); break; \ + case 11: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_wks(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 12: result = additionaldata_ptr(rdata, add, arg); break; \ + case 13: result = additionaldata_hinfo(rdata, add, arg); break; \ + case 14: result = additionaldata_minfo(rdata, add, arg); break; \ + case 15: result = additionaldata_mx(rdata, add, arg); break; \ + case 16: result = additionaldata_txt(rdata, add, arg); break; \ + case 17: result = additionaldata_rp(rdata, add, arg); break; \ + case 18: result = additionaldata_afsdb(rdata, add, arg); break; \ + case 19: result = additionaldata_x25(rdata, add, arg); break; \ + case 20: result = additionaldata_isdn(rdata, add, arg); break; \ + case 21: result = additionaldata_rt(rdata, add, arg); break; \ + case 22: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_nsap(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 23: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_nsap_ptr(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 24: result = additionaldata_sig(rdata, add, arg); break; \ + case 25: result = additionaldata_key(rdata, add, arg); break; \ + case 26: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_px(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 27: result = additionaldata_gpos(rdata, add, arg); break; \ + case 28: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_aaaa(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 29: result = additionaldata_loc(rdata, add, arg); break; \ + case 30: result = additionaldata_nxt(rdata, add, arg); break; \ + case 33: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_srv(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 35: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_naptr(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 36: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_kx(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 37: result = additionaldata_cert(rdata, add, arg); break; \ + case 38: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_a6(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 39: result = additionaldata_dname(rdata, add, arg); break; \ + case 41: result = additionaldata_opt(rdata, add, arg); break; \ + case 42: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_apl(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 43: result = additionaldata_ds(rdata, add, arg); break; \ + case 44: result = additionaldata_sshfp(rdata, add, arg); break; \ + case 45: result = additionaldata_ipseckey(rdata, add, arg); break; \ + case 46: result = additionaldata_rrsig(rdata, add, arg); break; \ + case 47: result = additionaldata_nsec(rdata, add, arg); break; \ + case 48: result = additionaldata_dnskey(rdata, add, arg); break; \ + case 49: switch (rdata->rdclass) { \ + case 1: result = additionaldata_in_dhcid(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 50: result = additionaldata_nsec3(rdata, add, arg); break; \ + case 51: result = additionaldata_nsec3param(rdata, add, arg); break; \ + case 99: result = additionaldata_spf(rdata, add, arg); break; \ + case 103: result = additionaldata_unspec(rdata, add, arg); break; \ + case 249: result = additionaldata_tkey(rdata, add, arg); break; \ + case 250: switch (rdata->rdclass) { \ + case 255: result = additionaldata_any_tsig(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 32769: result = additionaldata_dlv(rdata, add, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } + +#define DIGESTSWITCH \ + switch (rdata->type) { \ + case 1: switch (rdata->rdclass) { \ + case 1: result = digest_in_a(rdata, digest, arg); break; \ + case 3: result = digest_ch_a(rdata, digest, arg); break; \ + case 4: result = digest_hs_a(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 2: result = digest_ns(rdata, digest, arg); break; \ + case 3: result = digest_md(rdata, digest, arg); break; \ + case 4: result = digest_mf(rdata, digest, arg); break; \ + case 5: result = digest_cname(rdata, digest, arg); break; \ + case 6: result = digest_soa(rdata, digest, arg); break; \ + case 7: result = digest_mb(rdata, digest, arg); break; \ + case 8: result = digest_mg(rdata, digest, arg); break; \ + case 9: result = digest_mr(rdata, digest, arg); break; \ + case 10: result = digest_null(rdata, digest, arg); break; \ + case 11: switch (rdata->rdclass) { \ + case 1: result = digest_in_wks(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 12: result = digest_ptr(rdata, digest, arg); break; \ + case 13: result = digest_hinfo(rdata, digest, arg); break; \ + case 14: result = digest_minfo(rdata, digest, arg); break; \ + case 15: result = digest_mx(rdata, digest, arg); break; \ + case 16: result = digest_txt(rdata, digest, arg); break; \ + case 17: result = digest_rp(rdata, digest, arg); break; \ + case 18: result = digest_afsdb(rdata, digest, arg); break; \ + case 19: result = digest_x25(rdata, digest, arg); break; \ + case 20: result = digest_isdn(rdata, digest, arg); break; \ + case 21: result = digest_rt(rdata, digest, arg); break; \ + case 22: switch (rdata->rdclass) { \ + case 1: result = digest_in_nsap(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 23: switch (rdata->rdclass) { \ + case 1: result = digest_in_nsap_ptr(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 24: result = digest_sig(rdata, digest, arg); break; \ + case 25: result = digest_key(rdata, digest, arg); break; \ + case 26: switch (rdata->rdclass) { \ + case 1: result = digest_in_px(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 27: result = digest_gpos(rdata, digest, arg); break; \ + case 28: switch (rdata->rdclass) { \ + case 1: result = digest_in_aaaa(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 29: result = digest_loc(rdata, digest, arg); break; \ + case 30: result = digest_nxt(rdata, digest, arg); break; \ + case 33: switch (rdata->rdclass) { \ + case 1: result = digest_in_srv(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 35: switch (rdata->rdclass) { \ + case 1: result = digest_in_naptr(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 36: switch (rdata->rdclass) { \ + case 1: result = digest_in_kx(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 37: result = digest_cert(rdata, digest, arg); break; \ + case 38: switch (rdata->rdclass) { \ + case 1: result = digest_in_a6(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 39: result = digest_dname(rdata, digest, arg); break; \ + case 41: result = digest_opt(rdata, digest, arg); break; \ + case 42: switch (rdata->rdclass) { \ + case 1: result = digest_in_apl(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 43: result = digest_ds(rdata, digest, arg); break; \ + case 44: result = digest_sshfp(rdata, digest, arg); break; \ + case 45: result = digest_ipseckey(rdata, digest, arg); break; \ + case 46: result = digest_rrsig(rdata, digest, arg); break; \ + case 47: result = digest_nsec(rdata, digest, arg); break; \ + case 48: result = digest_dnskey(rdata, digest, arg); break; \ + case 49: switch (rdata->rdclass) { \ + case 1: result = digest_in_dhcid(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 50: result = digest_nsec3(rdata, digest, arg); break; \ + case 51: result = digest_nsec3param(rdata, digest, arg); break; \ + case 99: result = digest_spf(rdata, digest, arg); break; \ + case 103: result = digest_unspec(rdata, digest, arg); break; \ + case 249: result = digest_tkey(rdata, digest, arg); break; \ + case 250: switch (rdata->rdclass) { \ + case 255: result = digest_any_tsig(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } \ + break; \ + case 32769: result = digest_dlv(rdata, digest, arg); break; \ + default: use_default = ISC_TRUE; break; \ + } + +#define CHECKOWNERSWITCH \ + switch (type) { \ + case 1: switch (rdclass) { \ + case 1: result = checkowner_in_a(name, rdclass, type, wildcard); break; \ + case 3: result = checkowner_ch_a(name, rdclass, type, wildcard); break; \ + case 4: result = checkowner_hs_a(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 2: result = checkowner_ns(name, rdclass, type, wildcard); break; \ + case 3: result = checkowner_md(name, rdclass, type, wildcard); break; \ + case 4: result = checkowner_mf(name, rdclass, type, wildcard); break; \ + case 5: result = checkowner_cname(name, rdclass, type, wildcard); break; \ + case 6: result = checkowner_soa(name, rdclass, type, wildcard); break; \ + case 7: result = checkowner_mb(name, rdclass, type, wildcard); break; \ + case 8: result = checkowner_mg(name, rdclass, type, wildcard); break; \ + case 9: result = checkowner_mr(name, rdclass, type, wildcard); break; \ + case 10: result = checkowner_null(name, rdclass, type, wildcard); break; \ + case 11: switch (rdclass) { \ + case 1: result = checkowner_in_wks(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 12: result = checkowner_ptr(name, rdclass, type, wildcard); break; \ + case 13: result = checkowner_hinfo(name, rdclass, type, wildcard); break; \ + case 14: result = checkowner_minfo(name, rdclass, type, wildcard); break; \ + case 15: result = checkowner_mx(name, rdclass, type, wildcard); break; \ + case 16: result = checkowner_txt(name, rdclass, type, wildcard); break; \ + case 17: result = checkowner_rp(name, rdclass, type, wildcard); break; \ + case 18: result = checkowner_afsdb(name, rdclass, type, wildcard); break; \ + case 19: result = checkowner_x25(name, rdclass, type, wildcard); break; \ + case 20: result = checkowner_isdn(name, rdclass, type, wildcard); break; \ + case 21: result = checkowner_rt(name, rdclass, type, wildcard); break; \ + case 22: switch (rdclass) { \ + case 1: result = checkowner_in_nsap(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 23: switch (rdclass) { \ + case 1: result = checkowner_in_nsap_ptr(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 24: result = checkowner_sig(name, rdclass, type, wildcard); break; \ + case 25: result = checkowner_key(name, rdclass, type, wildcard); break; \ + case 26: switch (rdclass) { \ + case 1: result = checkowner_in_px(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 27: result = checkowner_gpos(name, rdclass, type, wildcard); break; \ + case 28: switch (rdclass) { \ + case 1: result = checkowner_in_aaaa(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 29: result = checkowner_loc(name, rdclass, type, wildcard); break; \ + case 30: result = checkowner_nxt(name, rdclass, type, wildcard); break; \ + case 33: switch (rdclass) { \ + case 1: result = checkowner_in_srv(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 35: switch (rdclass) { \ + case 1: result = checkowner_in_naptr(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 36: switch (rdclass) { \ + case 1: result = checkowner_in_kx(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 37: result = checkowner_cert(name, rdclass, type, wildcard); break; \ + case 38: switch (rdclass) { \ + case 1: result = checkowner_in_a6(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 39: result = checkowner_dname(name, rdclass, type, wildcard); break; \ + case 41: result = checkowner_opt(name, rdclass, type, wildcard); break; \ + case 42: switch (rdclass) { \ + case 1: result = checkowner_in_apl(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 43: result = checkowner_ds(name, rdclass, type, wildcard); break; \ + case 44: result = checkowner_sshfp(name, rdclass, type, wildcard); break; \ + case 45: result = checkowner_ipseckey(name, rdclass, type, wildcard); break; \ + case 46: result = checkowner_rrsig(name, rdclass, type, wildcard); break; \ + case 47: result = checkowner_nsec(name, rdclass, type, wildcard); break; \ + case 48: result = checkowner_dnskey(name, rdclass, type, wildcard); break; \ + case 49: switch (rdclass) { \ + case 1: result = checkowner_in_dhcid(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 50: result = checkowner_nsec3(name, rdclass, type, wildcard); break; \ + case 51: result = checkowner_nsec3param(name, rdclass, type, wildcard); break; \ + case 99: result = checkowner_spf(name, rdclass, type, wildcard); break; \ + case 103: result = checkowner_unspec(name, rdclass, type, wildcard); break; \ + case 249: result = checkowner_tkey(name, rdclass, type, wildcard); break; \ + case 250: switch (rdclass) { \ + case 255: result = checkowner_any_tsig(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 32769: result = checkowner_dlv(name, rdclass, type, wildcard); break; \ + default: result = ISC_TRUE; break; \ + } + +#define CHECKNAMESSWITCH \ + switch (rdata->type) { \ + case 1: switch (rdata->rdclass) { \ + case 1: result = checknames_in_a(rdata, owner, bad); break; \ + case 3: result = checknames_ch_a(rdata, owner, bad); break; \ + case 4: result = checknames_hs_a(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 2: result = checknames_ns(rdata, owner, bad); break; \ + case 3: result = checknames_md(rdata, owner, bad); break; \ + case 4: result = checknames_mf(rdata, owner, bad); break; \ + case 5: result = checknames_cname(rdata, owner, bad); break; \ + case 6: result = checknames_soa(rdata, owner, bad); break; \ + case 7: result = checknames_mb(rdata, owner, bad); break; \ + case 8: result = checknames_mg(rdata, owner, bad); break; \ + case 9: result = checknames_mr(rdata, owner, bad); break; \ + case 10: result = checknames_null(rdata, owner, bad); break; \ + case 11: switch (rdata->rdclass) { \ + case 1: result = checknames_in_wks(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 12: result = checknames_ptr(rdata, owner, bad); break; \ + case 13: result = checknames_hinfo(rdata, owner, bad); break; \ + case 14: result = checknames_minfo(rdata, owner, bad); break; \ + case 15: result = checknames_mx(rdata, owner, bad); break; \ + case 16: result = checknames_txt(rdata, owner, bad); break; \ + case 17: result = checknames_rp(rdata, owner, bad); break; \ + case 18: result = checknames_afsdb(rdata, owner, bad); break; \ + case 19: result = checknames_x25(rdata, owner, bad); break; \ + case 20: result = checknames_isdn(rdata, owner, bad); break; \ + case 21: result = checknames_rt(rdata, owner, bad); break; \ + case 22: switch (rdata->rdclass) { \ + case 1: result = checknames_in_nsap(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 23: switch (rdata->rdclass) { \ + case 1: result = checknames_in_nsap_ptr(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 24: result = checknames_sig(rdata, owner, bad); break; \ + case 25: result = checknames_key(rdata, owner, bad); break; \ + case 26: switch (rdata->rdclass) { \ + case 1: result = checknames_in_px(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 27: result = checknames_gpos(rdata, owner, bad); break; \ + case 28: switch (rdata->rdclass) { \ + case 1: result = checknames_in_aaaa(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 29: result = checknames_loc(rdata, owner, bad); break; \ + case 30: result = checknames_nxt(rdata, owner, bad); break; \ + case 33: switch (rdata->rdclass) { \ + case 1: result = checknames_in_srv(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 35: switch (rdata->rdclass) { \ + case 1: result = checknames_in_naptr(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 36: switch (rdata->rdclass) { \ + case 1: result = checknames_in_kx(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 37: result = checknames_cert(rdata, owner, bad); break; \ + case 38: switch (rdata->rdclass) { \ + case 1: result = checknames_in_a6(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 39: result = checknames_dname(rdata, owner, bad); break; \ + case 41: result = checknames_opt(rdata, owner, bad); break; \ + case 42: switch (rdata->rdclass) { \ + case 1: result = checknames_in_apl(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 43: result = checknames_ds(rdata, owner, bad); break; \ + case 44: result = checknames_sshfp(rdata, owner, bad); break; \ + case 45: result = checknames_ipseckey(rdata, owner, bad); break; \ + case 46: result = checknames_rrsig(rdata, owner, bad); break; \ + case 47: result = checknames_nsec(rdata, owner, bad); break; \ + case 48: result = checknames_dnskey(rdata, owner, bad); break; \ + case 49: switch (rdata->rdclass) { \ + case 1: result = checknames_in_dhcid(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 50: result = checknames_nsec3(rdata, owner, bad); break; \ + case 51: result = checknames_nsec3param(rdata, owner, bad); break; \ + case 99: result = checknames_spf(rdata, owner, bad); break; \ + case 103: result = checknames_unspec(rdata, owner, bad); break; \ + case 249: result = checknames_tkey(rdata, owner, bad); break; \ + case 250: switch (rdata->rdclass) { \ + case 255: result = checknames_any_tsig(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } \ + break; \ + case 32769: result = checknames_dlv(rdata, owner, bad); break; \ + default: result = ISC_TRUE; break; \ + } +#define RDATATYPE_COMPARE(_s, _d, _tn, _n, _tp) \ + do { \ + if (sizeof(_s) - 1 == _n && \ + strncasecmp(_s,(_tn),(sizeof(_s) - 1)) == 0) { \ + if ((dns_rdatatype_attributes(_d) & DNS_RDATATYPEATTR_RESERVED) != 0) \ + return (ISC_R_NOTIMPLEMENTED); \ + *(_tp) = _d; \ + return (ISC_R_SUCCESS); \ + } \ + } while (0) + +#define RDATATYPE_FROMTEXT_SW(_hash,_typename,_length,_typep) \ + switch (_hash) { \ + case 16: \ + RDATATYPE_COMPARE("reserved0", 0, _typename, _length, _typep); \ + break; \ + case 34: \ + RDATATYPE_COMPARE("a", 1, _typename, _length, _typep); \ + break; \ + case 80: \ + RDATATYPE_COMPARE("ns", 2, _typename, _length, _typep); \ + break; \ + case 92: \ + RDATATYPE_COMPARE("md", 3, _typename, _length, _typep); \ + break; \ + case 58: \ + RDATATYPE_COMPARE("mf", 4, _typename, _length, _typep); \ + break; \ + case 8: \ + RDATATYPE_COMPARE("cname", 5, _typename, _length, _typep); \ + RDATATYPE_COMPARE("mx", 15, _typename, _length, _typep); \ + break; \ + case 182: \ + RDATATYPE_COMPARE("soa", 6, _typename, _length, _typep); \ + break; \ + case 126: \ + RDATATYPE_COMPARE("mb", 7, _typename, _length, _typep); \ + break; \ + case 169: \ + RDATATYPE_COMPARE("mg", 8, _typename, _length, _typep); \ + break; \ + case 110: \ + RDATATYPE_COMPARE("mr", 9, _typename, _length, _typep); \ + RDATATYPE_COMPARE("minfo", 14, _typename, _length, _typep); \ + break; \ + case 24: \ + RDATATYPE_COMPARE("null", 10, _typename, _length, _typep); \ + RDATATYPE_COMPARE("kx", 36, _typename, _length, _typep); \ + RDATATYPE_COMPARE("nsec3param", 51, _typename, _length, _typep); \ + break; \ + case 206: \ + RDATATYPE_COMPARE("wks", 11, _typename, _length, _typep); \ + break; \ + case 54: \ + RDATATYPE_COMPARE("ptr", 12, _typename, _length, _typep); \ + RDATATYPE_COMPARE("naptr", 35, _typename, _length, _typep); \ + break; \ + case 67: \ + RDATATYPE_COMPARE("hinfo", 13, _typename, _length, _typep); \ + break; \ + case 236: \ + RDATATYPE_COMPARE("txt", 16, _typename, _length, _typep); \ + break; \ + case 192: \ + RDATATYPE_COMPARE("rp", 17, _typename, _length, _typep); \ + break; \ + case 12: \ + RDATATYPE_COMPARE("afsdb", 18, _typename, _length, _typep); \ + break; \ + case 119: \ + RDATATYPE_COMPARE("x25", 19, _typename, _length, _typep); \ + break; \ + case 214: \ + RDATATYPE_COMPARE("isdn", 20, _typename, _length, _typep); \ + break; \ + case 144: \ + RDATATYPE_COMPARE("rt", 21, _typename, _length, _typep); \ + break; \ + case 224: \ + RDATATYPE_COMPARE("nsap", 22, _typename, _length, _typep); \ + RDATATYPE_COMPARE("uid", 101, _typename, _length, _typep); \ + break; \ + case 140: \ + RDATATYPE_COMPARE("nsap-ptr", 23, _typename, _length, _typep); \ + break; \ + case 122: \ + RDATATYPE_COMPARE("sig", 24, _typename, _length, _typep); \ + RDATATYPE_COMPARE("dlv", 32769, _typename, _length, _typep); \ + break; \ + case 254: \ + RDATATYPE_COMPARE("key", 25, _typename, _length, _typep); \ + break; \ + case 112: \ + RDATATYPE_COMPARE("px", 26, _typename, _length, _typep); \ + break; \ + case 17: \ + RDATATYPE_COMPARE("gpos", 27, _typename, _length, _typep); \ + break; \ + case 69: \ + RDATATYPE_COMPARE("aaaa", 28, _typename, _length, _typep); \ + RDATATYPE_COMPARE("atma", 34, _typename, _length, _typep); \ + break; \ + case 237: \ + RDATATYPE_COMPARE("loc", 29, _typename, _length, _typep); \ + break; \ + case 52: \ + RDATATYPE_COMPARE("nxt", 30, _typename, _length, _typep); \ + break; \ + case 160: \ + RDATATYPE_COMPARE("eid", 31, _typename, _length, _typep); \ + break; \ + case 220: \ + RDATATYPE_COMPARE("nimloc", 32, _typename, _length, _typep); \ + break; \ + case 100: \ + RDATATYPE_COMPARE("srv", 33, _typename, _length, _typep); \ + break; \ + case 172: \ + RDATATYPE_COMPARE("cert", 37, _typename, _length, _typep); \ + break; \ + case 226: \ + RDATATYPE_COMPARE("a6", 38, _typename, _length, _typep); \ + break; \ + case 109: \ + RDATATYPE_COMPARE("dname", 39, _typename, _length, _typep); \ + break; \ + case 168: \ + RDATATYPE_COMPARE("opt", 41, _typename, _length, _typep); \ + break; \ + case 48: \ + RDATATYPE_COMPARE("apl", 42, _typename, _length, _typep); \ + break; \ + case 210: \ + RDATATYPE_COMPARE("ds", 43, _typename, _length, _typep); \ + break; \ + case 128: \ + RDATATYPE_COMPARE("sshfp", 44, _typename, _length, _typep); \ + break; \ + case 105: \ + RDATATYPE_COMPARE("ipseckey", 45, _typename, _length, _typep); \ + break; \ + case 225: \ + RDATATYPE_COMPARE("rrsig", 46, _typename, _length, _typep); \ + break; \ + case 22: \ + RDATATYPE_COMPARE("nsec", 47, _typename, _length, _typep); \ + break; \ + case 26: \ + RDATATYPE_COMPARE("dnskey", 48, _typename, _length, _typep); \ + break; \ + case 4: \ + RDATATYPE_COMPARE("dhcid", 49, _typename, _length, _typep); \ + RDATATYPE_COMPARE("spf", 99, _typename, _length, _typep); \ + break; \ + case 233: \ + RDATATYPE_COMPARE("nsec3", 50, _typename, _length, _typep); \ + break; \ + case 230: \ + RDATATYPE_COMPARE("uinfo", 100, _typename, _length, _typep); \ + break; \ + case 104: \ + RDATATYPE_COMPARE("gid", 102, _typename, _length, _typep); \ + break; \ + case 145: \ + RDATATYPE_COMPARE("unspec", 103, _typename, _length, _typep); \ + break; \ + case 184: \ + RDATATYPE_COMPARE("tkey", 249, _typename, _length, _typep); \ + break; \ + case 72: \ + RDATATYPE_COMPARE("tsig", 250, _typename, _length, _typep); \ + break; \ + case 138: \ + RDATATYPE_COMPARE("ixfr", 251, _typename, _length, _typep); \ + break; \ + case 250: \ + RDATATYPE_COMPARE("axfr", 252, _typename, _length, _typep); \ + break; \ + case 164: \ + RDATATYPE_COMPARE("mailb", 253, _typename, _length, _typep); \ + break; \ + case 50: \ + RDATATYPE_COMPARE("maila", 254, _typename, _length, _typep); \ + break; \ + case 68: \ + RDATATYPE_COMPARE("any", 255, _typename, _length, _typep); \ + break; \ + } +#define RDATATYPE_ATTRIBUTE_SW \ + switch (type) { \ + case 0: return (DNS_RDATATYPEATTR_RESERVED); \ + case 1: return (RRTYPE_A_ATTRIBUTES); \ + case 2: return (RRTYPE_NS_ATTRIBUTES); \ + case 3: return (RRTYPE_MD_ATTRIBUTES); \ + case 4: return (RRTYPE_MF_ATTRIBUTES); \ + case 5: return (RRTYPE_CNAME_ATTRIBUTES); \ + case 6: return (RRTYPE_SOA_ATTRIBUTES); \ + case 7: return (RRTYPE_MB_ATTRIBUTES); \ + case 8: return (RRTYPE_MG_ATTRIBUTES); \ + case 9: return (RRTYPE_MR_ATTRIBUTES); \ + case 10: return (RRTYPE_NULL_ATTRIBUTES); \ + case 11: return (RRTYPE_WKS_ATTRIBUTES); \ + case 12: return (RRTYPE_PTR_ATTRIBUTES); \ + case 13: return (RRTYPE_HINFO_ATTRIBUTES); \ + case 14: return (RRTYPE_MINFO_ATTRIBUTES); \ + case 15: return (RRTYPE_MX_ATTRIBUTES); \ + case 16: return (RRTYPE_TXT_ATTRIBUTES); \ + case 17: return (RRTYPE_RP_ATTRIBUTES); \ + case 18: return (RRTYPE_AFSDB_ATTRIBUTES); \ + case 19: return (RRTYPE_X25_ATTRIBUTES); \ + case 20: return (RRTYPE_ISDN_ATTRIBUTES); \ + case 21: return (RRTYPE_RT_ATTRIBUTES); \ + case 22: return (RRTYPE_NSAP_ATTRIBUTES); \ + case 23: return (RRTYPE_NSAP_PTR_ATTRIBUTES); \ + case 24: return (RRTYPE_SIG_ATTRIBUTES); \ + case 25: return (RRTYPE_KEY_ATTRIBUTES); \ + case 26: return (RRTYPE_PX_ATTRIBUTES); \ + case 27: return (RRTYPE_GPOS_ATTRIBUTES); \ + case 28: return (RRTYPE_AAAA_ATTRIBUTES); \ + case 29: return (RRTYPE_LOC_ATTRIBUTES); \ + case 30: return (RRTYPE_NXT_ATTRIBUTES); \ + case 31: return (DNS_RDATATYPEATTR_RESERVED); \ + case 32: return (DNS_RDATATYPEATTR_RESERVED); \ + case 33: return (RRTYPE_SRV_ATTRIBUTES); \ + case 34: return (DNS_RDATATYPEATTR_RESERVED); \ + case 35: return (RRTYPE_NAPTR_ATTRIBUTES); \ + case 36: return (RRTYPE_KX_ATTRIBUTES); \ + case 37: return (RRTYPE_CERT_ATTRIBUTES); \ + case 38: return (RRTYPE_A6_ATTRIBUTES); \ + case 39: return (RRTYPE_DNAME_ATTRIBUTES); \ + case 41: return (RRTYPE_OPT_ATTRIBUTES); \ + case 42: return (RRTYPE_APL_ATTRIBUTES); \ + case 43: return (RRTYPE_DS_ATTRIBUTES); \ + case 44: return (RRTYPE_SSHFP_ATTRIBUTES); \ + case 45: return (RRTYPE_IPSECKEY_ATTRIBUTES); \ + case 46: return (RRTYPE_RRSIG_ATTRIBUTES); \ + case 47: return (RRTYPE_NSEC_ATTRIBUTES); \ + case 48: return (RRTYPE_DNSKEY_ATTRIBUTES); \ + case 49: return (RRTYPE_DHCID_ATTRIBUTES); \ + case 50: return (RRTYPE_NSEC3_ATTRIBUTES); \ + case 51: return (RRTYPE_NSEC3PARAM_ATTRIBUTES); \ + case 99: return (RRTYPE_SPF_ATTRIBUTES); \ + case 100: return (DNS_RDATATYPEATTR_RESERVED); \ + case 101: return (DNS_RDATATYPEATTR_RESERVED); \ + case 102: return (DNS_RDATATYPEATTR_RESERVED); \ + case 103: return (RRTYPE_UNSPEC_ATTRIBUTES); \ + case 249: return (RRTYPE_TKEY_ATTRIBUTES); \ + case 250: return (RRTYPE_TSIG_ATTRIBUTES); \ + case 251: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \ + case 252: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \ + case 253: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \ + case 254: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \ + case 255: return (DNS_RDATATYPEATTR_META | DNS_RDATATYPEATTR_QUESTIONONLY); \ + case 32769: return (RRTYPE_DLV_ATTRIBUTES); \ + } +#define RDATATYPE_TOTEXT_SW \ + switch (type) { \ + case 0: return (str_totext("RESERVED0", target)); \ + case 1: return (str_totext("A", target)); \ + case 2: return (str_totext("NS", target)); \ + case 3: return (str_totext("MD", target)); \ + case 4: return (str_totext("MF", target)); \ + case 5: return (str_totext("CNAME", target)); \ + case 6: return (str_totext("SOA", target)); \ + case 7: return (str_totext("MB", target)); \ + case 8: return (str_totext("MG", target)); \ + case 9: return (str_totext("MR", target)); \ + case 10: return (str_totext("NULL", target)); \ + case 11: return (str_totext("WKS", target)); \ + case 12: return (str_totext("PTR", target)); \ + case 13: return (str_totext("HINFO", target)); \ + case 14: return (str_totext("MINFO", target)); \ + case 15: return (str_totext("MX", target)); \ + case 16: return (str_totext("TXT", target)); \ + case 17: return (str_totext("RP", target)); \ + case 18: return (str_totext("AFSDB", target)); \ + case 19: return (str_totext("X25", target)); \ + case 20: return (str_totext("ISDN", target)); \ + case 21: return (str_totext("RT", target)); \ + case 22: return (str_totext("NSAP", target)); \ + case 23: return (str_totext("NSAP-PTR", target)); \ + case 24: return (str_totext("SIG", target)); \ + case 25: return (str_totext("KEY", target)); \ + case 26: return (str_totext("PX", target)); \ + case 27: return (str_totext("GPOS", target)); \ + case 28: return (str_totext("AAAA", target)); \ + case 29: return (str_totext("LOC", target)); \ + case 30: return (str_totext("NXT", target)); \ + case 31: return (str_totext("EID", target)); \ + case 32: return (str_totext("NIMLOC", target)); \ + case 33: return (str_totext("SRV", target)); \ + case 34: return (str_totext("ATMA", target)); \ + case 35: return (str_totext("NAPTR", target)); \ + case 36: return (str_totext("KX", target)); \ + case 37: return (str_totext("CERT", target)); \ + case 38: return (str_totext("A6", target)); \ + case 39: return (str_totext("DNAME", target)); \ + case 41: return (str_totext("OPT", target)); \ + case 42: return (str_totext("APL", target)); \ + case 43: return (str_totext("DS", target)); \ + case 44: return (str_totext("SSHFP", target)); \ + case 45: return (str_totext("IPSECKEY", target)); \ + case 46: return (str_totext("RRSIG", target)); \ + case 47: return (str_totext("NSEC", target)); \ + case 48: return (str_totext("DNSKEY", target)); \ + case 49: return (str_totext("DHCID", target)); \ + case 50: return (str_totext("NSEC3", target)); \ + case 51: return (str_totext("NSEC3PARAM", target)); \ + case 99: return (str_totext("SPF", target)); \ + case 100: return (str_totext("UINFO", target)); \ + case 101: return (str_totext("UID", target)); \ + case 102: return (str_totext("GID", target)); \ + case 103: return (str_totext("UNSPEC", target)); \ + case 249: return (str_totext("TKEY", target)); \ + case 250: return (str_totext("TSIG", target)); \ + case 251: return (str_totext("IXFR", target)); \ + case 252: return (str_totext("AXFR", target)); \ + case 253: return (str_totext("MAILB", target)); \ + case 254: return (str_totext("MAILA", target)); \ + case 255: return (str_totext("ANY", target)); \ + case 32769: return (str_totext("DLV", target)); \ + } +#endif /* DNS_CODE_H */ diff --git a/external/bsd/bind/include/dns/enumclass.h b/external/bsd/bind/include/dns/enumclass.h new file mode 100644 index 00000000000..d005da1a5ed --- /dev/null +++ b/external/bsd/bind/include/dns/enumclass.h @@ -0,0 +1,48 @@ +/* + * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/*************** + *************** + *************** THIS FILE IS AUTOMATICALLY GENERATED BY gen.c. + *************** DO NOT EDIT! + *************** + ***************/ + +/*! \file */ + +#ifndef DNS_ENUMCLASS_H +#define DNS_ENUMCLASS_H 1 + +enum { + dns_rdataclass_reserved0 = 0, +#define dns_rdataclass_reserved0 \ + ((dns_rdataclass_t)dns_rdataclass_reserved0) + dns_rdataclass_in = 1, +#define dns_rdataclass_in ((dns_rdataclass_t)dns_rdataclass_in) + dns_rdataclass_chaos = 3, +#define dns_rdataclass_chaos ((dns_rdataclass_t)dns_rdataclass_chaos) + dns_rdataclass_ch = 3, +#define dns_rdataclass_ch ((dns_rdataclass_t)dns_rdataclass_ch) + dns_rdataclass_hs = 4, +#define dns_rdataclass_hs ((dns_rdataclass_t)dns_rdataclass_hs) + dns_rdataclass_none = 254, +#define dns_rdataclass_none ((dns_rdataclass_t)dns_rdataclass_none) + dns_rdataclass_any = 255 +#define dns_rdataclass_any ((dns_rdataclass_t)dns_rdataclass_any) +}; + +#endif /* DNS_ENUMCLASS_H */ diff --git a/external/bsd/bind/include/dns/enumtype.h b/external/bsd/bind/include/dns/enumtype.h new file mode 100644 index 00000000000..4a8df0094ff --- /dev/null +++ b/external/bsd/bind/include/dns/enumtype.h @@ -0,0 +1,150 @@ +/* + * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/*************** + *************** + *************** THIS FILE IS AUTOMATICALLY GENERATED BY gen.c. + *************** DO NOT EDIT! + *************** + ***************/ + +/*! \file */ + +#ifndef DNS_ENUMTYPE_H +#define DNS_ENUMTYPE_H 1 + +enum { + dns_rdatatype_none = 0, + dns_rdatatype_a = 1, + dns_rdatatype_ns = 2, + dns_rdatatype_md = 3, + dns_rdatatype_mf = 4, + dns_rdatatype_cname = 5, + dns_rdatatype_soa = 6, + dns_rdatatype_mb = 7, + dns_rdatatype_mg = 8, + dns_rdatatype_mr = 9, + dns_rdatatype_null = 10, + dns_rdatatype_wks = 11, + dns_rdatatype_ptr = 12, + dns_rdatatype_hinfo = 13, + dns_rdatatype_minfo = 14, + dns_rdatatype_mx = 15, + dns_rdatatype_txt = 16, + dns_rdatatype_rp = 17, + dns_rdatatype_afsdb = 18, + dns_rdatatype_x25 = 19, + dns_rdatatype_isdn = 20, + dns_rdatatype_rt = 21, + dns_rdatatype_nsap = 22, + dns_rdatatype_nsap_ptr = 23, + dns_rdatatype_sig = 24, + dns_rdatatype_key = 25, + dns_rdatatype_px = 26, + dns_rdatatype_gpos = 27, + dns_rdatatype_aaaa = 28, + dns_rdatatype_loc = 29, + dns_rdatatype_nxt = 30, + dns_rdatatype_srv = 33, + dns_rdatatype_naptr = 35, + dns_rdatatype_kx = 36, + dns_rdatatype_cert = 37, + dns_rdatatype_a6 = 38, + dns_rdatatype_dname = 39, + dns_rdatatype_opt = 41, + dns_rdatatype_apl = 42, + dns_rdatatype_ds = 43, + dns_rdatatype_sshfp = 44, + dns_rdatatype_ipseckey = 45, + dns_rdatatype_rrsig = 46, + dns_rdatatype_nsec = 47, + dns_rdatatype_dnskey = 48, + dns_rdatatype_dhcid = 49, + dns_rdatatype_nsec3 = 50, + dns_rdatatype_nsec3param = 51, + dns_rdatatype_spf = 99, + dns_rdatatype_unspec = 103, + dns_rdatatype_tkey = 249, + dns_rdatatype_tsig = 250, + dns_rdatatype_dlv = 32769, + dns_rdatatype_ixfr = 251, + dns_rdatatype_axfr = 252, + dns_rdatatype_mailb = 253, + dns_rdatatype_maila = 254, + dns_rdatatype_any = 255 +}; + +#define dns_rdatatype_none ((dns_rdatatype_t)dns_rdatatype_none) +#define dns_rdatatype_a ((dns_rdatatype_t)dns_rdatatype_a) +#define dns_rdatatype_ns ((dns_rdatatype_t)dns_rdatatype_ns) +#define dns_rdatatype_md ((dns_rdatatype_t)dns_rdatatype_md) +#define dns_rdatatype_mf ((dns_rdatatype_t)dns_rdatatype_mf) +#define dns_rdatatype_cname ((dns_rdatatype_t)dns_rdatatype_cname) +#define dns_rdatatype_soa ((dns_rdatatype_t)dns_rdatatype_soa) +#define dns_rdatatype_mb ((dns_rdatatype_t)dns_rdatatype_mb) +#define dns_rdatatype_mg ((dns_rdatatype_t)dns_rdatatype_mg) +#define dns_rdatatype_mr ((dns_rdatatype_t)dns_rdatatype_mr) +#define dns_rdatatype_null ((dns_rdatatype_t)dns_rdatatype_null) +#define dns_rdatatype_wks ((dns_rdatatype_t)dns_rdatatype_wks) +#define dns_rdatatype_ptr ((dns_rdatatype_t)dns_rdatatype_ptr) +#define dns_rdatatype_hinfo ((dns_rdatatype_t)dns_rdatatype_hinfo) +#define dns_rdatatype_minfo ((dns_rdatatype_t)dns_rdatatype_minfo) +#define dns_rdatatype_mx ((dns_rdatatype_t)dns_rdatatype_mx) +#define dns_rdatatype_txt ((dns_rdatatype_t)dns_rdatatype_txt) +#define dns_rdatatype_rp ((dns_rdatatype_t)dns_rdatatype_rp) +#define dns_rdatatype_afsdb ((dns_rdatatype_t)dns_rdatatype_afsdb) +#define dns_rdatatype_x25 ((dns_rdatatype_t)dns_rdatatype_x25) +#define dns_rdatatype_isdn ((dns_rdatatype_t)dns_rdatatype_isdn) +#define dns_rdatatype_rt ((dns_rdatatype_t)dns_rdatatype_rt) +#define dns_rdatatype_nsap ((dns_rdatatype_t)dns_rdatatype_nsap) +#define dns_rdatatype_nsap_ptr ((dns_rdatatype_t)dns_rdatatype_nsap_ptr) +#define dns_rdatatype_sig ((dns_rdatatype_t)dns_rdatatype_sig) +#define dns_rdatatype_key ((dns_rdatatype_t)dns_rdatatype_key) +#define dns_rdatatype_px ((dns_rdatatype_t)dns_rdatatype_px) +#define dns_rdatatype_gpos ((dns_rdatatype_t)dns_rdatatype_gpos) +#define dns_rdatatype_aaaa ((dns_rdatatype_t)dns_rdatatype_aaaa) +#define dns_rdatatype_loc ((dns_rdatatype_t)dns_rdatatype_loc) +#define dns_rdatatype_nxt ((dns_rdatatype_t)dns_rdatatype_nxt) +#define dns_rdatatype_srv ((dns_rdatatype_t)dns_rdatatype_srv) +#define dns_rdatatype_naptr ((dns_rdatatype_t)dns_rdatatype_naptr) +#define dns_rdatatype_kx ((dns_rdatatype_t)dns_rdatatype_kx) +#define dns_rdatatype_cert ((dns_rdatatype_t)dns_rdatatype_cert) +#define dns_rdatatype_a6 ((dns_rdatatype_t)dns_rdatatype_a6) +#define dns_rdatatype_dname ((dns_rdatatype_t)dns_rdatatype_dname) +#define dns_rdatatype_opt ((dns_rdatatype_t)dns_rdatatype_opt) +#define dns_rdatatype_apl ((dns_rdatatype_t)dns_rdatatype_apl) +#define dns_rdatatype_ds ((dns_rdatatype_t)dns_rdatatype_ds) +#define dns_rdatatype_sshfp ((dns_rdatatype_t)dns_rdatatype_sshfp) +#define dns_rdatatype_ipseckey ((dns_rdatatype_t)dns_rdatatype_ipseckey) +#define dns_rdatatype_rrsig ((dns_rdatatype_t)dns_rdatatype_rrsig) +#define dns_rdatatype_nsec ((dns_rdatatype_t)dns_rdatatype_nsec) +#define dns_rdatatype_dnskey ((dns_rdatatype_t)dns_rdatatype_dnskey) +#define dns_rdatatype_dhcid ((dns_rdatatype_t)dns_rdatatype_dhcid) +#define dns_rdatatype_nsec3 ((dns_rdatatype_t)dns_rdatatype_nsec3) +#define dns_rdatatype_nsec3param ((dns_rdatatype_t)dns_rdatatype_nsec3param) +#define dns_rdatatype_spf ((dns_rdatatype_t)dns_rdatatype_spf) +#define dns_rdatatype_unspec ((dns_rdatatype_t)dns_rdatatype_unspec) +#define dns_rdatatype_tkey ((dns_rdatatype_t)dns_rdatatype_tkey) +#define dns_rdatatype_tsig ((dns_rdatatype_t)dns_rdatatype_tsig) +#define dns_rdatatype_dlv ((dns_rdatatype_t)dns_rdatatype_dlv) +#define dns_rdatatype_ixfr ((dns_rdatatype_t)dns_rdatatype_ixfr) +#define dns_rdatatype_axfr ((dns_rdatatype_t)dns_rdatatype_axfr) +#define dns_rdatatype_mailb ((dns_rdatatype_t)dns_rdatatype_mailb) +#define dns_rdatatype_maila ((dns_rdatatype_t)dns_rdatatype_maila) +#define dns_rdatatype_any ((dns_rdatatype_t)dns_rdatatype_any) + +#endif /* DNS_ENUMTYPE_H */ diff --git a/external/bsd/bind/include/dns/rdatastruct.h b/external/bsd/bind/include/dns/rdatastruct.h new file mode 100644 index 00000000000..36375cdf7f4 --- /dev/null +++ b/external/bsd/bind/include/dns/rdatastruct.h @@ -0,0 +1,2055 @@ +/* + * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/*************** + *************** + *************** THIS FILE IS AUTOMATICALLY GENERATED BY gen.c. + *************** DO NOT EDIT! + *************** + ***************/ + +/*! \file */ + +/* + * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +#ifndef DNS_RDATASTRUCT_H +#define DNS_RDATASTRUCT_H 1 + +#include <isc/lang.h> +#include <isc/sockaddr.h> + +#include <dns/name.h> +#include <dns/types.h> + +ISC_LANG_BEGINDECLS + +typedef struct dns_rdatacommon { + dns_rdataclass_t rdclass; + dns_rdatatype_t rdtype; + ISC_LINK(struct dns_rdatacommon) link; +} dns_rdatacommon_t; + +#define DNS_RDATACOMMON_INIT(_data, _rdtype, _rdclass) \ + do { \ + (_data)->common.rdtype = (_rdtype); \ + (_data)->common.rdclass = (_rdclass); \ + ISC_LINK_INIT(&(_data)->common, link); \ + } while (0) +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef IN_1_A_1_H +#define IN_1_A_1_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_in_a { + dns_rdatacommon_t common; + struct in_addr in_addr; +} dns_rdata_in_a_t; + +#endif /* IN_1_A_1_H */ +/* + * Copyright (C) 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/* by Bjorn.Victor@it.uu.se, 2005-05-07 */ +/* Based on generic/mx_15.h */ + +#ifndef CH_3_A_1_H +#define CH_3_A_1_H 1 + +typedef isc_uint16_t ch_addr_t; + +typedef struct dns_rdata_ch_a { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t ch_addr_dom; /* ch-addr domain for back mapping */ + ch_addr_t ch_addr; /* chaos address (16 bit) network order */ +} dns_rdata_ch_a_t; + +#endif /* CH_3_A_1_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef HS_4_A_1_H +#define HS_4_A_1_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_hs_a { + dns_rdatacommon_t common; + struct in_addr in_addr; +} dns_rdata_hs_a_t; + +#endif /* HS_4_A_1_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_NS_2_H +#define GENERIC_NS_2_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_ns { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t name; +} dns_rdata_ns_t; + + +#endif /* GENERIC_NS_2_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_MD_3_H +#define GENERIC_MD_3_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_md { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t md; +} dns_rdata_md_t; + + +#endif /* GENERIC_MD_3_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_MF_4_H +#define GENERIC_MF_4_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_mf { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t mf; +} dns_rdata_mf_t; + +#endif /* GENERIC_MF_4_H */ +/* + * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +#ifndef GENERIC_CNAME_5_H +#define GENERIC_CNAME_5_H 1 + +typedef struct dns_rdata_cname { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t cname; +} dns_rdata_cname_t; + +#endif /* GENERIC_CNAME_5_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_SOA_6_H +#define GENERIC_SOA_6_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_soa { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t origin; + dns_name_t contact; + isc_uint32_t serial; /*%< host order */ + isc_uint32_t refresh; /*%< host order */ + isc_uint32_t retry; /*%< host order */ + isc_uint32_t expire; /*%< host order */ + isc_uint32_t minimum; /*%< host order */ +} dns_rdata_soa_t; + + +#endif /* GENERIC_SOA_6_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_MB_7_H +#define GENERIC_MB_7_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_mb { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t mb; +} dns_rdata_mb_t; + +#endif /* GENERIC_MB_7_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_MG_8_H +#define GENERIC_MG_8_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_mg { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t mg; +} dns_rdata_mg_t; + +#endif /* GENERIC_MG_8_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_MR_9_H +#define GENERIC_MR_9_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_mr { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t mr; +} dns_rdata_mr_t; + +#endif /* GENERIC_MR_9_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_NULL_10_H +#define GENERIC_NULL_10_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_null { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t length; + unsigned char *data; +} dns_rdata_null_t; + + +#endif /* GENERIC_NULL_10_H */ +/* + * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef IN_1_WKS_11_H +#define IN_1_WKS_11_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_in_wks { + dns_rdatacommon_t common; + isc_mem_t *mctx; + struct in_addr in_addr; + isc_uint16_t protocol; + unsigned char *map; + isc_uint16_t map_len; +} dns_rdata_in_wks_t; + +#endif /* IN_1_WKS_11_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_PTR_12_H +#define GENERIC_PTR_12_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_ptr { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t ptr; +} dns_rdata_ptr_t; + +#endif /* GENERIC_PTR_12_H */ +/* + * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_HINFO_13_H +#define GENERIC_HINFO_13_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_hinfo { + dns_rdatacommon_t common; + isc_mem_t *mctx; + char *cpu; + char *os; + isc_uint8_t cpu_len; + isc_uint8_t os_len; +} dns_rdata_hinfo_t; + +#endif /* GENERIC_HINFO_13_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_MINFO_14_H +#define GENERIC_MINFO_14_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_minfo { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t rmailbox; + dns_name_t emailbox; +} dns_rdata_minfo_t; + +#endif /* GENERIC_MINFO_14_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_MX_15_H +#define GENERIC_MX_15_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_mx { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t pref; + dns_name_t mx; +} dns_rdata_mx_t; + +#endif /* GENERIC_MX_15_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_TXT_16_H +#define GENERIC_TXT_16_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_txt_string { + isc_uint8_t length; + unsigned char *data; +} dns_rdata_txt_string_t; + +typedef struct dns_rdata_txt { + dns_rdatacommon_t common; + isc_mem_t *mctx; + unsigned char *txt; + isc_uint16_t txt_len; + /* private */ + isc_uint16_t offset; +} dns_rdata_txt_t; + +/* + * ISC_LANG_BEGINDECLS and ISC_LANG_ENDDECLS are already done + * via rdatastructpre.h and rdatastructsuf.h. + */ + +isc_result_t +dns_rdata_txt_first(dns_rdata_txt_t *); + +isc_result_t +dns_rdata_txt_next(dns_rdata_txt_t *); + +isc_result_t +dns_rdata_txt_current(dns_rdata_txt_t *, dns_rdata_txt_string_t *); + +#endif /* GENERIC_TXT_16_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_RP_17_H +#define GENERIC_RP_17_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC1183 */ + +typedef struct dns_rdata_rp { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t mail; + dns_name_t text; +} dns_rdata_rp_t; + + +#endif /* GENERIC_RP_17_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_AFSDB_18_H +#define GENERIC_AFSDB_18_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC1183 */ + +typedef struct dns_rdata_afsdb { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t subtype; + dns_name_t server; +} dns_rdata_afsdb_t; + +#endif /* GENERIC_AFSDB_18_H */ + +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_X25_19_H +#define GENERIC_X25_19_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC1183 */ + +typedef struct dns_rdata_x25 { + dns_rdatacommon_t common; + isc_mem_t *mctx; + unsigned char *x25; + isc_uint8_t x25_len; +} dns_rdata_x25_t; + +#endif /* GENERIC_X25_19_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_ISDN_20_H +#define GENERIC_ISDN_20_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC1183 */ + +typedef struct dns_rdata_isdn { + dns_rdatacommon_t common; + isc_mem_t *mctx; + char *isdn; + char *subaddress; + isc_uint8_t isdn_len; + isc_uint8_t subaddress_len; +} dns_rdata_isdn_t; + +#endif /* GENERIC_ISDN_20_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_RT_21_H +#define GENERIC_RT_21_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC1183 */ + +typedef struct dns_rdata_rt { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t preference; + dns_name_t host; +} dns_rdata_rt_t; + +#endif /* GENERIC_RT_21_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef IN_1_NSAP_22_H +#define IN_1_NSAP_22_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC1706 */ + +typedef struct dns_rdata_in_nsap { + dns_rdatacommon_t common; + isc_mem_t *mctx; + unsigned char *nsap; + isc_uint16_t nsap_len; +} dns_rdata_in_nsap_t; + +#endif /* IN_1_NSAP_22_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef IN_1_NSAP_PTR_23_H +#define IN_1_NSAP_PTR_23_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC1348. Obsoleted in RFC 1706 - use PTR instead. */ + +typedef struct dns_rdata_in_nsap_ptr { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t owner; +} dns_rdata_in_nsap_ptr_t; + +#endif /* IN_1_NSAP_PTR_23_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_SIG_24_H +#define GENERIC_SIG_24_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC2535 */ + +typedef struct dns_rdata_sig_t { + dns_rdatacommon_t common; + isc_mem_t * mctx; + dns_rdatatype_t covered; + dns_secalg_t algorithm; + isc_uint8_t labels; + isc_uint32_t originalttl; + isc_uint32_t timeexpire; + isc_uint32_t timesigned; + isc_uint16_t keyid; + dns_name_t signer; + isc_uint16_t siglen; + unsigned char * signature; +} dns_rdata_sig_t; + + +#endif /* GENERIC_SIG_24_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_KEY_25_H +#define GENERIC_KEY_25_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC2535 */ + +typedef struct dns_rdata_key_t { + dns_rdatacommon_t common; + isc_mem_t * mctx; + isc_uint16_t flags; + isc_uint8_t protocol; + isc_uint8_t algorithm; + isc_uint16_t datalen; + unsigned char * data; +} dns_rdata_key_t; + + +#endif /* GENERIC_KEY_25_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef IN_1_PX_26_H +#define IN_1_PX_26_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC2163 */ + +typedef struct dns_rdata_in_px { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t preference; + dns_name_t map822; + dns_name_t mapx400; +} dns_rdata_in_px_t; + +#endif /* IN_1_PX_26_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_GPOS_27_H +#define GENERIC_GPOS_27_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief per RFC1712 */ + +typedef struct dns_rdata_gpos { + dns_rdatacommon_t common; + isc_mem_t *mctx; + char *longitude; + char *latitude; + char *altitude; + isc_uint8_t long_len; + isc_uint8_t lat_len; + isc_uint8_t alt_len; +} dns_rdata_gpos_t; + +#endif /* GENERIC_GPOS_27_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef IN_1_AAAA_28_H +#define IN_1_AAAA_28_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC1886 */ + +typedef struct dns_rdata_in_aaaa { + dns_rdatacommon_t common; + struct in6_addr in6_addr; +} dns_rdata_in_aaaa_t; + +#endif /* IN_1_AAAA_28_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_LOC_29_H +#define GENERIC_LOC_29_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC1876 */ + +typedef struct dns_rdata_loc_0 { + isc_uint8_t version; /* must be first and zero */ + isc_uint8_t size; + isc_uint8_t horizontal; + isc_uint8_t vertical; + isc_uint32_t latitude; + isc_uint32_t longitude; + isc_uint32_t altitude; +} dns_rdata_loc_0_t; + +typedef struct dns_rdata_loc { + dns_rdatacommon_t common; + union { + dns_rdata_loc_0_t v0; + } v; +} dns_rdata_loc_t; + +#endif /* GENERIC_LOC_29_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2002 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_NXT_30_H +#define GENERIC_NXT_30_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief RFC2535 */ + +typedef struct dns_rdata_nxt { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t next; + unsigned char *typebits; + isc_uint16_t len; +} dns_rdata_nxt_t; + +#endif /* GENERIC_NXT_30_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef IN_1_SRV_33_H +#define IN_1_SRV_33_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/* Reviewed: Fri Mar 17 13:01:00 PST 2000 by bwelling */ + +/*! + * \brief Per RFC2782 */ + +typedef struct dns_rdata_in_srv { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t priority; + isc_uint16_t weight; + isc_uint16_t port; + dns_name_t target; +} dns_rdata_in_srv_t; + +#endif /* IN_1_SRV_33_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef IN_1_NAPTR_35_H +#define IN_1_NAPTR_35_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC2915 */ + +typedef struct dns_rdata_in_naptr { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t order; + isc_uint16_t preference; + char *flags; + isc_uint8_t flags_len; + char *service; + isc_uint8_t service_len; + char *regexp; + isc_uint8_t regexp_len; + dns_name_t replacement; +} dns_rdata_in_naptr_t; + +#endif /* IN_1_NAPTR_35_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef IN_1_KX_36_H +#define IN_1_KX_36_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC2230 */ + +typedef struct dns_rdata_in_kx { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t preference; + dns_name_t exchange; +} dns_rdata_in_kx_t; + +#endif /* IN_1_KX_36_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +#ifndef GENERIC_CERT_37_H +#define GENERIC_CERT_37_H 1 + +/*% RFC2538 */ +typedef struct dns_rdata_cert { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t type; + isc_uint16_t key_tag; + isc_uint8_t algorithm; + isc_uint16_t length; + unsigned char *certificate; +} dns_rdata_cert_t; + +#endif /* GENERIC_CERT_37_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef IN_1_A6_38_H +#define IN_1_A6_38_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC2874 */ + +typedef struct dns_rdata_in_a6 { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t prefix; + isc_uint8_t prefixlen; + struct in6_addr in6_addr; +} dns_rdata_in_a6_t; + +#endif /* IN_1_A6_38_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_DNAME_39_H +#define GENERIC_DNAME_39_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief per RFC2672 */ + +typedef struct dns_rdata_dname { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t dname; +} dns_rdata_dname_t; + +#endif /* GENERIC_DNAME_39_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_OPT_41_H +#define GENERIC_OPT_41_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC2671 */ + +typedef struct dns_rdata_opt_opcode { + isc_uint16_t opcode; + isc_uint16_t length; + unsigned char *data; +} dns_rdata_opt_opcode_t; + +typedef struct dns_rdata_opt { + dns_rdatacommon_t common; + isc_mem_t *mctx; + unsigned char *options; + isc_uint16_t length; + /* private */ + isc_uint16_t offset; +} dns_rdata_opt_t; + +/* + * ISC_LANG_BEGINDECLS and ISC_LANG_ENDDECLS are already done + * via rdatastructpre.h and rdatastructsuf.h. + */ + +isc_result_t +dns_rdata_opt_first(dns_rdata_opt_t *); + +isc_result_t +dns_rdata_opt_next(dns_rdata_opt_t *); + +isc_result_t +dns_rdata_opt_current(dns_rdata_opt_t *, dns_rdata_opt_opcode_t *); + +#endif /* GENERIC_OPT_41_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2002 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef IN_1_APL_42_H +#define IN_1_APL_42_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_apl_ent { + isc_boolean_t negative; + isc_uint16_t family; + isc_uint8_t prefix; + isc_uint8_t length; + unsigned char *data; +} dns_rdata_apl_ent_t; + +typedef struct dns_rdata_in_apl { + dns_rdatacommon_t common; + isc_mem_t *mctx; + /* type & class specific elements */ + unsigned char *apl; + isc_uint16_t apl_len; + /* private */ + isc_uint16_t offset; +} dns_rdata_in_apl_t; + +/* + * ISC_LANG_BEGINDECLS and ISC_LANG_ENDDECLS are already done + * via rdatastructpre.h and rdatastructsuf.h. + */ + +isc_result_t +dns_rdata_apl_first(dns_rdata_in_apl_t *); + +isc_result_t +dns_rdata_apl_next(dns_rdata_in_apl_t *); + +isc_result_t +dns_rdata_apl_current(dns_rdata_in_apl_t *, dns_rdata_apl_ent_t *); + +#endif /* IN_1_APL_42_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2002 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +#ifndef GENERIC_DS_43_H +#define GENERIC_DS_43_H 1 + +/*! + * \brief per draft-ietf-dnsext-delegation-signer-05.txt */ +typedef struct dns_rdata_ds { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t key_tag; + isc_uint8_t algorithm; + isc_uint8_t digest_type; + isc_uint16_t length; + unsigned char *digest; +} dns_rdata_ds_t; + +#endif /* GENERIC_DS_43_H */ +/* + * Copyright (C) 2004-2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC 4255 */ + +#ifndef GENERIC_SSHFP_44_H +#define GENERIC_SSHFP_44_H 1 + +typedef struct dns_rdata_sshfp { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint8_t algorithm; + isc_uint8_t digest_type; + isc_uint16_t length; + unsigned char *digest; +} dns_rdata_sshfp_t; + +#endif /* GENERIC_SSHFP_44_H */ +/* + * Copyright (C) 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +#ifndef GENERIC_IPSECKEY_45_H +#define GENERIC_IPSECKEY_45_H 1 + +typedef struct dns_rdata_ipseckey { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint8_t precedence; + isc_uint8_t gateway_type; + isc_uint8_t algorithm; + struct in_addr in_addr; /* gateway type 1 */ + struct in6_addr in6_addr; /* gateway type 2 */ + dns_name_t gateway; /* gateway type 3 */ + unsigned char *key; + isc_uint16_t keylength; +} dns_rdata_ipseckey_t; + +#endif /* GENERIC_IPSECKEY_45_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_DNSSIG_46_H +#define GENERIC_DNSSIG_46_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC2535 */ +typedef struct dns_rdata_rrsig { + dns_rdatacommon_t common; + isc_mem_t * mctx; + dns_rdatatype_t covered; + dns_secalg_t algorithm; + isc_uint8_t labels; + isc_uint32_t originalttl; + isc_uint32_t timeexpire; + isc_uint32_t timesigned; + isc_uint16_t keyid; + dns_name_t signer; + isc_uint16_t siglen; + unsigned char * signature; +} dns_rdata_rrsig_t; + + +#endif /* GENERIC_DNSSIG_46_H */ +/* + * Copyright (C) 2004, 2005, 2007, 2008 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_NSEC_47_H +#define GENERIC_NSEC_47_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC 3845 */ + +typedef struct dns_rdata_nsec { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_name_t next; + unsigned char *typebits; + isc_uint16_t len; +} dns_rdata_nsec_t; + +#endif /* GENERIC_NSEC_47_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_DNSKEY_48_H +#define GENERIC_DNSKEY_48_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief per RFC2535 */ + +typedef struct dns_rdata_dnskey { + dns_rdatacommon_t common; + isc_mem_t * mctx; + isc_uint16_t flags; + isc_uint8_t protocol; + isc_uint8_t algorithm; + isc_uint16_t datalen; + unsigned char * data; +} dns_rdata_dnskey_t; + + +#endif /* GENERIC_DNSKEY_48_H */ +/* + * Copyright (C) 2006, 2007 Internet Systems Consortium, Inc. ("ISC") + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef IN_1_DHCID_49_H +#define IN_1_DHCID_49_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_in_dhcid { + dns_rdatacommon_t common; + isc_mem_t *mctx; + unsigned char *dhcid; + unsigned int length; +} dns_rdata_in_dhcid_t; + +#endif /* IN_1_DHCID_49_H */ +/* + * Copyright (C) 2008 Internet Systems Consortium, Inc. ("ISC") + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + + +#ifndef GENERIC_NSEC3_50_H +#define GENERIC_NSEC3_50_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC 5155 */ + +#include <isc/iterated_hash.h> + +typedef struct dns_rdata_nsec3 { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_hash_t hash; + unsigned char flags; + dns_iterations_t iterations; + unsigned char salt_length; + unsigned char next_length; + isc_uint16_t len; + unsigned char *salt; + unsigned char *next; + unsigned char *typebits; +} dns_rdata_nsec3_t; + +/* + * The corresponding NSEC3 interval is OPTOUT indicating possible + * insecure delegations. + */ +#define DNS_NSEC3FLAG_OPTOUT 0x01U + +/*% + * Non-standard, NSEC3PARAM only. + * + * Create a corresponding NSEC3 chain. + * Once the NSEC3 chain is complete this flag will be removed to signal + * that there is a complete chain. + * + * This flag is automatically set when a NSEC3PARAM record is added to + * the zone via UPDATE. + * + * NSEC3PARAM records with this flag set are supposed to be ignored by + * RFC 5155 compliant nameservers. + */ +#define DNS_NSEC3FLAG_CREATE 0x80U + +/*% + * Non-standard, NSEC3PARAM only. + * + * The corresponding NSEC3 set is to be removed once the NSEC chain + * has been generated. + * + * This flag is automatically set when the last active NSEC3PARAM record + * is removed from the zone via UPDATE. + * + * NSEC3PARAM records with this flag set are supposed to be ignored by + * RFC 5155 compliant nameservers. + */ +#define DNS_NSEC3FLAG_REMOVE 0x40U + +/*% + * Non-standard, NSEC3PARAM only. + * + * Used to identify NSEC3PARAM records added in this UPDATE request. + */ +#define DNS_NSEC3FLAG_UPDATE 0x20U + +/*% + * Non-standard, NSEC3PARAM only. + * + * Prevent the creation of a NSEC chain before the last NSEC3 chain + * is removed. This will normally only be set when the zone is + * transitioning from secure with NSEC3 chains to insecure. + */ +#define DNS_NSEC3FLAG_NONSEC 0x10U + +#endif /* GENERIC_NSEC3_50_H */ +/* + * Copyright (C) 2008 Internet Systems Consortium, Inc. ("ISC") + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + + +#ifndef GENERIC_NSEC3PARAM_51_H +#define GENERIC_NSEC3PARAM_51_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per RFC 5155 */ + +#include <isc/iterated_hash.h> + +typedef struct dns_rdata_nsec3param { + dns_rdatacommon_t common; + isc_mem_t *mctx; + dns_hash_t hash; + unsigned char flags; /* DNS_NSEC3FLAG_* */ + dns_iterations_t iterations; + unsigned char salt_length; + unsigned char *salt; +} dns_rdata_nsec3param_t; + +#endif /* GENERIC_NSEC3PARAM_51_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1998-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_SPF_99_H +#define GENERIC_SPF_99_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_spf_string { + isc_uint8_t length; + unsigned char *data; +} dns_rdata_spf_string_t; + +typedef struct dns_rdata_spf { + dns_rdatacommon_t common; + isc_mem_t *mctx; + unsigned char *txt; + isc_uint16_t txt_len; + /* private */ + isc_uint16_t offset; +} dns_rdata_spf_t; + +/* + * ISC_LANG_BEGINDECLS and ISC_LANG_ENDDECLS are already done + * via rdatastructpre.h and rdatastructsuf.h. + */ + +isc_result_t +dns_rdata_spf_first(dns_rdata_spf_t *); + +isc_result_t +dns_rdata_spf_next(dns_rdata_spf_t *); + +isc_result_t +dns_rdata_spf_current(dns_rdata_spf_t *, dns_rdata_spf_string_t *); + +#endif /* GENERIC_SPF_99_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* */ +#ifndef GENERIC_UNSPEC_103_H +#define GENERIC_UNSPEC_103_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +typedef struct dns_rdata_unspec_t { + dns_rdatacommon_t common; + isc_mem_t *mctx; + unsigned char *data; + isc_uint16_t datalen; +} dns_rdata_unspec_t; + +#endif /* GENERIC_UNSPEC_103_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001, 2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +#ifndef GENERIC_TKEY_249_H +#define GENERIC_TKEY_249_H 1 + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! + * \brief Per draft-ietf-dnsind-tkey-00.txt */ + +typedef struct dns_rdata_tkey { + dns_rdatacommon_t common; + isc_mem_t * mctx; + dns_name_t algorithm; + isc_uint32_t inception; + isc_uint32_t expire; + isc_uint16_t mode; + isc_uint16_t error; + isc_uint16_t keylen; + unsigned char * key; + isc_uint16_t otherlen; + unsigned char * other; +} dns_rdata_tkey_t; + + +#endif /* GENERIC_TKEY_249_H */ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +#ifndef ANY_255_TSIG_250_H +#define ANY_255_TSIG_250_H 1 + +/*% RFC2845 */ +typedef struct dns_rdata_any_tsig { + dns_rdatacommon_t common; + isc_mem_t * mctx; + dns_name_t algorithm; + isc_uint64_t timesigned; + isc_uint16_t fudge; + isc_uint16_t siglen; + unsigned char * signature; + isc_uint16_t originalid; + isc_uint16_t error; + isc_uint16_t otherlen; + unsigned char * other; +} dns_rdata_any_tsig_t; + +#endif /* ANY_255_TSIG_250_H */ +/* + * Copyright (C) 2004, 2006, 2007 Internet Systems Consortium, Inc. ("ISC") + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/* draft-ietf-dnsext-delegation-signer-05.txt */ +#ifndef GENERIC_DLV_32769_H +#define GENERIC_DLV_32769_H 1 + +typedef struct dns_rdata_dlv { + dns_rdatacommon_t common; + isc_mem_t *mctx; + isc_uint16_t key_tag; + isc_uint8_t algorithm; + isc_uint8_t digest_type; + isc_uint16_t length; + unsigned char *digest; +} dns_rdata_dlv_t; + +#endif /* GENERIC_DLV_32769_H */ +/* + * Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: rdatastruct.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +ISC_LANG_ENDDECLS + +#endif /* DNS_RDATASTRUCT_H */ diff --git a/external/bsd/bind/include/isc/atomic.h b/external/bsd/bind/include/isc/atomic.h new file mode 100644 index 00000000000..c6b408acfb8 --- /dev/null +++ b/external/bsd/bind/include/isc/atomic.h @@ -0,0 +1,46 @@ +/* $NetBSD: atomic.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +#ifndef ISC_ATOMIC_H +#define ISC_ATOMIC_H 1 + +#include <sys/atomic.h> +#include <isc/types.h> + +/* + * This routine atomically increments the value stored in 'p' by 'val', and + * returns the previous value. + */ +static __inline isc_int32_t +isc_atomic_xadd(isc_int32_t *p, isc_int32_t val) { + return (isc_int32_t)atomic_add_32_nv((volatile uint32_t *)p, + (uint32_t)val) - val; +} + +#ifdef ISC_PLATFORM_HAVEXADDQ +static __inline isc_int64_t +isc_atomic_xaddq(isc_int64_t *p, isc_int64_t val) { + return (isc_int64_t)atomic_add_64_nv((volatile uint64_t *)p, + (uint64_t)val) - val; +} +#endif + +/* + * This routine atomically stores the value 'val' in 'p'. + */ +static __inline void +isc_atomic_store(isc_int32_t *p, isc_int32_t val) { + (void)atomic_swap_32((volatile uint32_t *)p, (uint32_t)val); +} + +/* + * This routine atomically replaces the value in 'p' with 'val', if the + * original value is equal to 'cmpval'. The original value is returned in any + * case. + */ +static __inline__ isc_int32_t +isc_atomic_cmpxchg(isc_int32_t *p, isc_int32_t cmpval, isc_int32_t val) { + return (isc_int32_t) atomic_cas_32((volatile uint32_t *)p, + (uint32_t)cmpval, (uint32_t)val); +} + +#endif /* ISC_ATOMIC_H */ diff --git a/external/bsd/bind/include/isc/platform.h b/external/bsd/bind/include/isc/platform.h new file mode 100644 index 00000000000..e3520e2f5ac --- /dev/null +++ b/external/bsd/bind/include/isc/platform.h @@ -0,0 +1,339 @@ +/* + * Copyright (C) 2004-2009 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 1999-2003 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: platform.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +#ifndef ISC_PLATFORM_H +#define ISC_PLATFORM_H 1 + +/*! \file */ + +/***** + ***** Platform-dependent defines. + *****/ + +/*** + *** Network. + ***/ + +/*! \brief + * Define if this system needs the <netinet/in6.h> header file included + * for full IPv6 support (pretty much only UnixWare). + */ +#undef ISC_PLATFORM_NEEDNETINETIN6H + +/*! \brief + * Define if this system needs the <netinet6/in6.h> header file included + * to support in6_pkinfo (pretty much only BSD/OS). + */ +#undef ISC_PLATFORM_NEEDNETINET6IN6H + +/*! \brief + * If sockaddrs on this system have an sa_len field, ISC_PLATFORM_HAVESALEN + * will be defined. + */ +#define ISC_PLATFORM_HAVESALEN 1 + +/*! \brief + * If this system has the IPv6 structure definitions, ISC_PLATFORM_HAVEIPV6 + * will be defined. + */ +#define ISC_PLATFORM_HAVEIPV6 1 + +/*! \brief + * If this system is missing in6addr_any, ISC_PLATFORM_NEEDIN6ADDRANY will + * be defined. + */ +#undef ISC_PLATFORM_NEEDIN6ADDRANY + +/*! \brief + * If this system is missing in6addr_loopback, ISC_PLATFORM_NEEDIN6ADDRLOOPBACK + * will be defined. + */ +#undef ISC_PLATFORM_NEEDIN6ADDRLOOPBACK + +/*! \brief + * If this system has in6_pktinfo, ISC_PLATFORM_HAVEIN6PKTINFO will be + * defined. + */ +#define ISC_PLATFORM_HAVEIN6PKTINFO 1 + +/*! \brief + * If this system has in_addr6, rather than in6_addr, ISC_PLATFORM_HAVEINADDR6 + * will be defined. + */ +#undef ISC_PLATFORM_HAVEINADDR6 + +/*! \brief + * If this system has sin6_scope_id, ISC_PLATFORM_HAVESCOPEID will be defined. + */ +#define ISC_PLATFORM_HAVESCOPEID 1 + +/*! \brief + * If this system needs inet_ntop(), ISC_PLATFORM_NEEDNTOP will be defined. + */ +#undef ISC_PLATFORM_NEEDNTOP + +/*! \brief + * If this system needs inet_pton(), ISC_PLATFORM_NEEDPTON will be defined. + */ +#undef ISC_PLATFORM_NEEDPTON + +/*! \brief + * If this system needs in_port_t, ISC_PLATFORM_NEEDPORTT will be defined. + */ +#undef ISC_PLATFORM_NEEDPORTT + +/*! \brief + * Define if the system has struct lifconf which is a extended struct ifconf + * for IPv6. + */ +#undef ISC_PLATFORM_HAVELIFCONF + +/*! \brief + * Define if the system has struct if_laddrconf which is a extended struct + * ifconf for IPv6. + */ +#undef ISC_PLATFORM_HAVEIF_LADDRCONF + +/*! \brief + * Define if the system has struct if_laddrreq. + */ +#undef ISC_PLATFORM_HAVEIF_LADDRREQ + +/*! \brief + * Define either ISC_PLATFORM_BSD44MSGHDR or ISC_PLATFORM_BSD43MSGHDR. + */ +#define ISC_NET_BSD44MSGHDR 1 + +/*! \brief + * Define if the system supports if_nametoindex. + */ +#define ISC_PLATFORM_HAVEIFNAMETOINDEX 1 + +/*! \brief + * Define on some UnixWare systems to fix erroneous definitions of various + * IN6_IS_ADDR_* macros. + */ +#undef ISC_PLATFORM_FIXIN6ISADDR + +/*! \brief + * Define if the system supports kqueue multiplexing + */ +#define ISC_PLATFORM_HAVEKQUEUE 1 + +/*! \brief + * Define if the system supports epoll multiplexing + */ +#undef ISC_PLATFORM_HAVEEPOLL + +/*! \brief + * Define if the system supports /dev/poll multiplexing + */ +#undef ISC_PLATFORM_HAVEDEVPOLL + +/* + *** Printing. + ***/ + +/*! \brief + * If this system needs vsnprintf() and snprintf(), ISC_PLATFORM_NEEDVSNPRINTF + * will be defined. + */ +#undef ISC_PLATFORM_NEEDVSNPRINTF + +/*! \brief + * If this system need a modern sprintf() that returns (int) not (char*). + */ +#undef ISC_PLATFORM_NEEDSPRINTF + +/*! \brief + * The printf format string modifier to use with isc_uint64_t values. + */ +#define ISC_PLATFORM_QUADFORMAT "ll" + +/*** + *** String functions. + ***/ +/* + * If the system needs strsep(), ISC_PLATFORM_NEEDSTRSEP will be defined. + */ +#undef ISC_PLATFORM_NEEDSTRSEP + +/* + * If the system needs strlcpy(), ISC_PLATFORM_NEEDSTRLCPY will be defined. + */ +#undef ISC_PLATFORM_NEEDSTRLCPY + +/* + * If the system needs strlcat(), ISC_PLATFORM_NEEDSTRLCAT will be defined. + */ +#undef ISC_PLATFORM_NEEDSTRLCAT + +/* + * Define if this system needs strtoul. + */ +#undef ISC_PLATFORM_NEEDSTRTOUL + +/* + * Define if this system needs memmove. + */ +#undef ISC_PLATFORM_NEEDMEMMOVE + +/*** + *** Miscellaneous. + ***/ + +/* + * Defined if we are using threads. + */ +#define ISC_PLATFORM_USETHREADS 1 + +/* + * Defined if unistd.h does not cause fd_set to be delared. + */ +#undef ISC_PLATFORM_NEEDSYSSELECTH + +/* + * Defined to <gssapi.h> or <gssapi/gssapi.h> for how to include + * the GSSAPI header. + */ + + +/* + * Type used for resource limits. + */ +#define ISC_PLATFORM_RLIMITTYPE rlim_t + +/* + * Define if your compiler supports "long long int". + */ +#define ISC_PLATFORM_HAVELONGLONG 1 + +/* + * Define if PTHREAD_ONCE_INIT should be surrounded by braces to + * prevent compiler warnings (such as with gcc on Solaris 2.8). + */ +#undef ISC_PLATFORM_BRACEPTHREADONCEINIT + +/* + * Used to control how extern data is linked; needed for Win32 platforms. + */ +#undef ISC_PLATFORM_USEDECLSPEC + +/* + * Define if the platform has <sys/un.h>. + */ +#define ISC_PLATFORM_HAVESYSUNH 1 + +/* + * If the "xadd" operation is available on this architecture, + * ISC_PLATFORM_HAVEXADD will be defined. + */ +#define ISC_PLATFORM_HAVEXADD 1 + +/* + * If the "xaddq" operation (64bit xadd) is available on this architecture, + * ISC_PLATFORM_HAVEXADDQ will be defined. + */ +#define ISC_PLATFORM_HAVEXADDQ 1 + +/* + * If the "atomic swap" operation is available on this architecture, + * ISC_PLATFORM_HAVEATOMICSTORE" will be defined. + */ +#define ISC_PLATFORM_HAVEATOMICSTORE 1 + +/* + * If the "compare-and-exchange" operation is available on this architecture, + * ISC_PLATFORM_HAVECMPXCHG will be defined. + */ +#define ISC_PLATFORM_HAVECMPXCHG 1 + +/* + * Define if gcc ASM extension is available + */ +#define ISC_PLATFORM_USEGCCASM 1 + +/* + * Define if Tru64 style ASM syntax must be used. + */ +#undef ISC_PLATFORM_USEOSFASM + +/* + * Define if the standard __asm function must be used. + */ + + +/* + * Define if the platform has <strings.h>. + */ +#define ISC_PLATFORM_HAVESTRINGSH 1 + +/*** + *** Windows dll support. + ***/ + +/* + * Define if MacOS style of PPC assembly must be used. + * e.g. "r6", not "6", for register six. + */ + + +#ifndef ISC_PLATFORM_USEDECLSPEC +#define LIBISC_EXTERNAL_DATA +#define LIBDNS_EXTERNAL_DATA +#define LIBISCCC_EXTERNAL_DATA +#define LIBISCCFG_EXTERNAL_DATA +#define LIBBIND9_EXTERNAL_DATA +#else /*! \brief ISC_PLATFORM_USEDECLSPEC */ +#ifdef LIBISC_EXPORTS +#define LIBISC_EXTERNAL_DATA __declspec(dllexport) +#else +#define LIBISC_EXTERNAL_DATA __declspec(dllimport) +#endif +#ifdef LIBDNS_EXPORTS +#define LIBDNS_EXTERNAL_DATA __declspec(dllexport) +#else +#define LIBDNS_EXTERNAL_DATA __declspec(dllimport) +#endif +#ifdef LIBISCCC_EXPORTS +#define LIBISCCC_EXTERNAL_DATA __declspec(dllexport) +#else +#define LIBISCCC_EXTERNAL_DATA __declspec(dllimport) +#endif +#ifdef LIBISCCFG_EXPORTS +#define LIBISCCFG_EXTERNAL_DATA __declspec(dllexport) +#else +#define LIBISCCFG_EXTERNAL_DATA __declspec(dllimport) +#endif +#ifdef LIBBIND9_EXPORTS +#define LIBBIND9_EXTERNAL_DATA __declspec(dllexport) +#else +#define LIBBIND9_EXTERNAL_DATA __declspec(dllimport) +#endif +#endif /*! \brief ISC_PLATFORM_USEDECLSPEC */ + +/* + * Tell emacs to use C mode for this file. + * + * Local Variables: + * mode: c + * End: + */ + +#endif /* ISC_PLATFORM_H */ diff --git a/external/bsd/bind/include/lwres/netdb.h b/external/bsd/bind/include/lwres/netdb.h new file mode 100644 index 00000000000..a288bcd47f3 --- /dev/null +++ b/external/bsd/bind/include/lwres/netdb.h @@ -0,0 +1,520 @@ +/* + * Copyright (C) 2004, 2005, 2007, 2009 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2000, 2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: netdb.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! \file */ + +#ifndef LWRES_NETDB_H +#define LWRES_NETDB_H 1 + +#include <stddef.h> /* Required on FreeBSD (and others?) for size_t. */ +#include <netdb.h> /* Contractual provision. */ + +#include <lwres/lang.h> + +/* + * Define if <netdb.h> does not declare struct addrinfo. + */ +#undef ISC_LWRES_NEEDADDRINFO + +#ifdef ISC_LWRES_NEEDADDRINFO +struct addrinfo { + int ai_flags; /* AI_PASSIVE, AI_CANONNAME */ + int ai_family; /* PF_xxx */ + int ai_socktype; /* SOCK_xxx */ + int ai_protocol; /* 0 or IPPROTO_xxx for IPv4 and IPv6 */ + size_t ai_addrlen; /* Length of ai_addr */ + char *ai_canonname; /* Canonical name for hostname */ + struct sockaddr *ai_addr; /* Binary address */ + struct addrinfo *ai_next; /* Next structure in linked list */ +}; +#endif + +/* + * Undefine all #defines we are interested in as <netdb.h> may or may not have + * defined them. + */ + +/* + * Error return codes from gethostbyname() and gethostbyaddr() + * (left in extern int h_errno). + */ + +#undef NETDB_INTERNAL +#undef NETDB_SUCCESS +#undef HOST_NOT_FOUND +#undef TRY_AGAIN +#undef NO_RECOVERY +#undef NO_DATA +#undef NO_ADDRESS + +#define NETDB_INTERNAL -1 /* see errno */ +#define NETDB_SUCCESS 0 /* no problem */ +#define HOST_NOT_FOUND 1 /* Authoritative Answer Host not found */ +#define TRY_AGAIN 2 /* Non-Authoritative Host not found, or SERVERFAIL */ +#define NO_RECOVERY 3 /* Non recoverable errors, FORMERR, REFUSED, NOTIMP */ +#define NO_DATA 4 /* Valid name, no data record of requested type */ +#define NO_ADDRESS NO_DATA /* no address, look for MX record */ + +/* + * Error return codes from getaddrinfo() + */ + +#undef EAI_ADDRFAMILY +#undef EAI_AGAIN +#undef EAI_BADFLAGS +#undef EAI_FAIL +#undef EAI_FAMILY +#undef EAI_MEMORY +#undef EAI_NODATA +#undef EAI_NONAME +#undef EAI_SERVICE +#undef EAI_SOCKTYPE +#undef EAI_SYSTEM +#undef EAI_BADHINTS +#undef EAI_PROTOCOL +#undef EAI_MAX + +#define EAI_ADDRFAMILY 1 /* address family for hostname not supported */ +#define EAI_AGAIN 2 /* temporary failure in name resolution */ +#define EAI_BADFLAGS 3 /* invalid value for ai_flags */ +#define EAI_FAIL 4 /* non-recoverable failure in name resolution */ +#define EAI_FAMILY 5 /* ai_family not supported */ +#define EAI_MEMORY 6 /* memory allocation failure */ +#define EAI_NODATA 7 /* no address associated with hostname */ +#define EAI_NONAME 8 /* hostname nor servname provided, or not known */ +#define EAI_SERVICE 9 /* servname not supported for ai_socktype */ +#define EAI_SOCKTYPE 10 /* ai_socktype not supported */ +#define EAI_SYSTEM 11 /* system error returned in errno */ +#define EAI_BADHINTS 12 +#define EAI_PROTOCOL 13 +#define EAI_MAX 14 + +/* + * Flag values for getaddrinfo() + */ +#undef AI_PASSIVE +#undef AI_CANONNAME +#undef AI_NUMERICHOST + +#define AI_PASSIVE 0x00000001 +#define AI_CANONNAME 0x00000002 +#define AI_NUMERICHOST 0x00000004 + +/* + * Flag values for getipnodebyname() + */ +#undef AI_V4MAPPED +#undef AI_ALL +#undef AI_ADDRCONFIG +#undef AI_DEFAULT + +#define AI_V4MAPPED 0x00000008 +#define AI_ALL 0x00000010 +#define AI_ADDRCONFIG 0x00000020 +#define AI_DEFAULT (AI_V4MAPPED|AI_ADDRCONFIG) + +/* + * Constants for lwres_getnameinfo() + */ +#undef NI_MAXHOST +#undef NI_MAXSERV + +#define NI_MAXHOST 1025 +#define NI_MAXSERV 32 + +/* + * Flag values for lwres_getnameinfo() + */ +#undef NI_NOFQDN +#undef NI_NUMERICHOST +#undef NI_NAMEREQD +#undef NI_NUMERICSERV +#undef NI_DGRAM +#undef NI_NUMERICSCOPE + +#define NI_NOFQDN 0x00000001 +#define NI_NUMERICHOST 0x00000002 +#define NI_NAMEREQD 0x00000004 +#define NI_NUMERICSERV 0x00000008 +#define NI_DGRAM 0x00000010 +#define NI_NUMERICSCOPE 0x00000020 /*2553bis-00*/ + +/* + * Define if <netdb.h> does not declare struct rrsetinfo. + */ +#define ISC_LWRES_NEEDRRSETINFO 1 + +#ifdef ISC_LWRES_NEEDRRSETINFO +/* + * Structures for getrrsetbyname() + */ +struct rdatainfo { + unsigned int rdi_length; + unsigned char *rdi_data; +}; + +struct rrsetinfo { + unsigned int rri_flags; + int rri_rdclass; + int rri_rdtype; + unsigned int rri_ttl; + unsigned int rri_nrdatas; + unsigned int rri_nsigs; + char *rri_name; + struct rdatainfo *rri_rdatas; + struct rdatainfo *rri_sigs; +}; + +/* + * Flags for getrrsetbyname() + */ +#define RRSET_VALIDATED 0x00000001 + /* Set was dnssec validated */ + +/* + * Return codes for getrrsetbyname() + */ +#define ERRSET_SUCCESS 0 +#define ERRSET_NOMEMORY 1 +#define ERRSET_FAIL 2 +#define ERRSET_INVAL 3 +#define ERRSET_NONAME 4 +#define ERRSET_NODATA 5 +#endif + +/* + * Define to map into lwres_ namespace. + */ + +#define LWRES_NAMESPACE + +#ifdef LWRES_NAMESPACE + +/* + * Use our versions not the ones from the C library. + */ + +#ifdef getnameinfo +#undef getnameinfo +#endif +#define getnameinfo lwres_getnameinfo + +#ifdef getaddrinfo +#undef getaddrinfo +#endif +#define getaddrinfo lwres_getaddrinfo + +#ifdef freeaddrinfo +#undef freeaddrinfo +#endif +#define freeaddrinfo lwres_freeaddrinfo + +#ifdef gai_strerror +#undef gai_strerror +#endif +#define gai_strerror lwres_gai_strerror + +#ifdef herror +#undef herror +#endif +#define herror lwres_herror + +#ifdef hstrerror +#undef hstrerror +#endif +#define hstrerror lwres_hstrerror + +#ifdef getipnodebyname +#undef getipnodebyname +#endif +#define getipnodebyname lwres_getipnodebyname + +#ifdef getipnodebyaddr +#undef getipnodebyaddr +#endif +#define getipnodebyaddr lwres_getipnodebyaddr + +#ifdef freehostent +#undef freehostent +#endif +#define freehostent lwres_freehostent + +#ifdef gethostbyname +#undef gethostbyname +#endif +#define gethostbyname lwres_gethostbyname + +#ifdef gethostbyname2 +#undef gethostbyname2 +#endif +#define gethostbyname2 lwres_gethostbyname2 + +#ifdef gethostbyaddr +#undef gethostbyaddr +#endif +#define gethostbyaddr lwres_gethostbyaddr + +#ifdef gethostent +#undef gethostent +#endif +#define gethostent lwres_gethostent + +#ifdef sethostent +#undef sethostent +#endif +#define sethostent lwres_sethostent + +#ifdef endhostent +#undef endhostent +#endif +#define endhostent lwres_endhostent + +/* #define sethostfile lwres_sethostfile */ + +#ifdef gethostbyname_r +#undef gethostbyname_r +#endif +#define gethostbyname_r lwres_gethostbyname_r + +#ifdef gethostbyaddr_r +#undef gethostbyaddr_r +#endif +#define gethostbyaddr_r lwres_gethostbyaddr_r + +#ifdef gethostent_r +#undef gethostent_r +#endif +#define gethostent_r lwres_gethostent_r + +#ifdef sethostent_r +#undef sethostent_r +#endif +#define sethostent_r lwres_sethostent_r + +#ifdef endhostent_r +#undef endhostent_r +#endif +#define endhostent_r lwres_endhostent_r + +#ifdef getrrsetbyname +#undef getrrsetbyname +#endif +#define getrrsetbyname lwres_getrrsetbyname + +#ifdef freerrset +#undef freerrset +#endif +#define freerrset lwres_freerrset + +#ifdef notyet +#define getservbyname lwres_getservbyname +#define getservbyport lwres_getservbyport +#define getservent lwres_getservent +#define setservent lwres_setservent +#define endservent lwres_endservent + +#define getservbyname_r lwres_getservbyname_r +#define getservbyport_r lwres_getservbyport_r +#define getservent_r lwres_getservent_r +#define setservent_r lwres_setservent_r +#define endservent_r lwres_endservent_r + +#define getprotobyname lwres_getprotobyname +#define getprotobynumber lwres_getprotobynumber +#define getprotoent lwres_getprotoent +#define setprotoent lwres_setprotoent +#define endprotoent lwres_endprotoent + +#define getprotobyname_r lwres_getprotobyname_r +#define getprotobynumber_r lwres_getprotobynumber_r +#define getprotoent_r lwres_getprotoent_r +#define setprotoent_r lwres_setprotoent_r +#define endprotoent_r lwres_endprotoent_r + +#ifdef getnetbyname +#undef getnetbyname +#endif +#define getnetbyname lwres_getnetbyname + +#ifdef getnetbyaddr +#undef getnetbyaddr +#endif +#define getnetbyaddr lwres_getnetbyaddr + +#ifdef getnetent +#undef getnetent +#endif +#define getnetent lwres_getnetent + +#ifdef setnetent +#undef setnetent +#endif +#define setnetent lwres_setnetent + +#ifdef endnetent +#undef endnetent +#endif +#define endnetent lwres_endnetent + + +#ifdef getnetbyname_r +#undef getnetbyname_r +#endif +#define getnetbyname_r lwres_getnetbyname_r + +#ifdef getnetbyaddr_r +#undef getnetbyaddr_r +#endif +#define getnetbyaddr_r lwres_getnetbyaddr_r + +#ifdef getnetent_r +#undef getnetent_r +#endif +#define getnetent_r lwres_getnetent_r + +#ifdef setnetent_r +#undef setnetent_r +#endif +#define setnetent_r lwres_setnetent_r + +#ifdef endnetent_r +#undef endnetent_r +#endif +#define endnetent_r lwres_endnetent_r +#endif /* notyet */ + +#ifdef h_errno +#undef h_errno +#endif +#define h_errno lwres_h_errno + +#endif /* LWRES_NAMESPACE */ + +LWRES_LANG_BEGINDECLS + +extern int lwres_h_errno; + +int lwres_getaddrinfo(const char *, const char *, + const struct addrinfo *, struct addrinfo **); +int lwres_getnameinfo(const struct sockaddr *, size_t, char *, + size_t, char *, size_t, int); +void lwres_freeaddrinfo(struct addrinfo *); +char *lwres_gai_strerror(int); + +struct hostent *lwres_gethostbyaddr(const char *, int, int); +struct hostent *lwres_gethostbyname(const char *); +struct hostent *lwres_gethostbyname2(const char *, int); +struct hostent *lwres_gethostent(void); +struct hostent *lwres_getipnodebyname(const char *, int, int, int *); +struct hostent *lwres_getipnodebyaddr(const void *, size_t, int, int *); +void lwres_endhostent(void); +void lwres_sethostent(int); +/* void lwres_sethostfile(const char *); */ +void lwres_freehostent(struct hostent *); + +int lwres_getrrsetbyname(const char *, unsigned int, unsigned int, + unsigned int, struct rrsetinfo **); +void lwres_freerrset(struct rrsetinfo *); + +#ifdef notyet +struct netent *lwres_getnetbyaddr(unsigned long, int); +struct netent *lwres_getnetbyname(const char *); +struct netent *lwres_getnetent(void); +void lwres_endnetent(void); +void lwres_setnetent(int); + +struct protoent *lwres_getprotobyname(const char *); +struct protoent *lwres_getprotobynumber(int); +struct protoent *lwres_getprotoent(void); +void lwres_endprotoent(void); +void lwres_setprotoent(int); + +struct servent *lwres_getservbyname(const char *, const char *); +struct servent *lwres_getservbyport(int, const char *); +struct servent *lwres_getservent(void); +void lwres_endservent(void); +void lwres_setservent(int); +#endif /* notyet */ + +void lwres_herror(const char *); +const char *lwres_hstrerror(int); + + +struct hostent *lwres_gethostbyaddr_r(const char *, int, int, struct hostent *, + char *, int, int *); +struct hostent *lwres_gethostbyname_r(const char *, struct hostent *, + char *, int, int *); +struct hostent *lwres_gethostent_r(struct hostent *, char *, int, int *); +void lwres_sethostent_r(int); +void lwres_endhostent_r(void); + +#ifdef notyet +struct netent *lwres_getnetbyname_r(const char *, struct netent *, + char *, int); +struct netent *lwres_getnetbyaddr_r(long, int, struct netent *, + char *, int); +struct netent *lwres_getnetent_r(struct netent *, char *, int); +void lwres_setnetent_r(int); +void lwres_endnetent_r(void); + +struct protoent *lwres_getprotobyname_r(const char *, + struct protoent *, char *, int); +struct protoent *lwres_getprotobynumber_r(int, + struct protoent *, char *, int); +struct protoent *lwres_getprotoent_r(struct protoent *, char *, int); +void lwres_setprotoent_r(int); +void lwres_endprotoent_r(void); + +struct servent *lwres_getservbyname_r(const char *name, const char *, + struct servent *, char *, int); +struct servent *lwres_getservbyport_r(int port, const char *, + struct servent *, char *, int); +struct servent *lwres_getservent_r(struct servent *, char *, int); +void lwres_setservent_r(int); +void lwres_endservent_r(void); +#endif /* notyet */ + +LWRES_LANG_ENDDECLS + +#ifdef notyet +/* This is nec'y to make this include file properly replace the sun version. */ +#ifdef sun +#ifdef __GNU_LIBRARY__ +#include <rpc/netdb.h> /* Required. */ +#else /* !__GNU_LIBRARY__ */ +struct rpcent { + char *r_name; /* name of server for this rpc program */ + char **r_aliases; /* alias list */ + int r_number; /* rpc program number */ +}; +struct rpcent *lwres_getrpcbyname(); +struct rpcent *lwres_getrpcbynumber(), +struct rpcent *lwres_getrpcent(); +#endif /* __GNU_LIBRARY__ */ +#endif /* sun */ +#endif /* notyet */ + +/* + * Tell Emacs to use C mode on this file. + * Local variables: + * mode: c + * End: + */ + +#endif /* LWRES_NETDB_H */ diff --git a/external/bsd/bind/include/lwres/platform.h b/external/bsd/bind/include/lwres/platform.h new file mode 100644 index 00000000000..a58b8a321f8 --- /dev/null +++ b/external/bsd/bind/include/lwres/platform.h @@ -0,0 +1,120 @@ +/* + * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC") + * Copyright (C) 2000, 2001 Internet Software Consortium. + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH + * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, + * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE + * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + * PERFORMANCE OF THIS SOFTWARE. + */ + +/* $Id: platform.h,v 1.1 2009/04/12 03:46:09 christos Exp $ */ + +/*! \file */ + +#ifndef LWRES_PLATFORM_H +#define LWRES_PLATFORM_H 1 + +/***** + ***** Platform-dependent defines. + *****/ + +/*** + *** Network. + ***/ + +/* + * Define if this system needs the <netinet/in6.h> header file for IPv6. + */ +#undef LWRES_PLATFORM_NEEDNETINETIN6H + +/* + * Define if this system needs the <netinet6/in6.h> header file for IPv6. + */ +#undef LWRES_PLATFORM_NEEDNETINET6IN6H + +/* + * If sockaddrs on this system have an sa_len field, LWRES_PLATFORM_HAVESALEN + * will be defined. + */ +#define LWRES_PLATFORM_HAVESALEN 1 + +/* + * If this system has the IPv6 structure definitions, LWRES_PLATFORM_HAVEIPV6 + * will be defined. + */ +#define LWRES_PLATFORM_HAVEIPV6 1 + +/* + * If this system is missing in6addr_any, LWRES_PLATFORM_NEEDIN6ADDRANY will + * be defined. + */ +#undef LWRES_PLATFORM_NEEDIN6ADDRANY + +/* + * If this system is missing in6addr_loopback, + * LWRES_PLATFORM_NEEDIN6ADDRLOOPBACK will be defined. + */ +#undef LWRES_PLATFORM_NEEDIN6ADDRLOOPBACK + +/* + * If this system has in_addr6, rather than in6_addr, + * LWRES_PLATFORM_HAVEINADDR6 will be defined. + */ +#undef LWRES_PLATFORM_HAVEINADDR6 + +/* + * Defined if unistd.h does not cause fd_set to be delared. + */ +#undef LWRES_PLATFORM_NEEDSYSSELECTH + +/* + * Used to control how extern data is linked; needed for Win32 platforms. + */ +#undef LWRES_PLATFORM_USEDECLSPEC + +/* + * Defined this system needs vsnprintf() and snprintf(). + */ +#undef LWRES_PLATFORM_NEEDVSNPRINTF + +/* + * If this system need a modern sprintf() that returns (int) not (char*). + */ +#undef LWRES_PLATFORM_NEEDSPRINTF + +/* + * The printf format string modifier to use with lwres_uint64_t values. + */ +#define LWRES_PLATFORM_QUADFORMAT "ll" + +/*! \brief + * Define if this system needs strtoul. + */ +#undef LWRES_PLATFORM_NEEDSTRTOUL + +#ifndef LWRES_PLATFORM_USEDECLSPEC +#define LIBLWRES_EXTERNAL_DATA +#else +#ifdef LIBLWRES_EXPORTS +#define LIBLWRES_EXTERNAL_DATA __declspec(dllexport) +#else +#define LIBLWRES_EXTERNAL_DATA __declspec(dllimport) +#endif +#endif + +/* + * Tell Emacs to use C mode on this file. + * Local Variables: + * mode: c + * End: + */ + +#endif /* LWRES_PLATFORM_H */ |
