~ubuntu-branches/ubuntu/utopic/pdns/utopic-updates

« back to all changes in this revision

Viewing changes to pdns/dns.hh

  • Committer: Package Import Robot
  • Author(s): Marc Haber, Marc Haber, Evgeni Golov
  • Date: 2012-05-11 23:51:27 UTC
  • mfrom: (1.1.9) (12.1.14 sid)
  • Revision ID: package-import@ubuntu.com-20120511235127-v0qjuaplfckcb2cd
Tags: 3.1-1
[ Marc Haber ]
* Imported Upstream version 3.1
  * reduce column size for 'algorithm' to 50. Closes: #662935
  * handle smallcaps RRs. Closes: #656788
* refresh patches
* remove unused patches
* add patch to turn off the traceback handler at run time
* add patch for changeset 2575 (race condition with supermasters)
* fix mysql multiarch build failure, set cflags etc to hardening defaults
* do not run bootstrap a build time, using autotools_dev
* use dh-autoreconf, remove autofoo created files from
  patches/fix-mongodb-backend-patch
* fix dh invocation
* create MySQL databases with engine=innodb instead of type
* set debian/compat to 9
* Standards-Version: 3.9.3 (no changes needed)
* add myself to uploaders, change Vcs-Header to my git. Closes: #672550

[ Evgeni Golov ]
* use system libpolarssl if present, local copy otherwise.
  Closes: #671856, #656861

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
    along with this program; if not, write to the Free Software
17
17
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
*/
19
 
// $Id: dns.hh 2231 2011-07-11 07:25:27Z ahu $ 
 
19
// $Id: dns.hh 2589 2012-04-29 13:02:29Z peter $ 
20
20
/* (C) 2002 POWERDNS.COM BV */
21
21
#ifndef DNS_HH
22
22
#define DNS_HH
179
179
        ns_t_cert = 37,         /* Certification record */
180
180
        ns_t_a6 = 38,           /* IPv6 address (deprecates AAAA) */
181
181
        ns_t_dname = 39,        /* Non-terminal DNAME (for IPv6) */
182
 
        ns_t_sink = 40,         /* Kitchen sink (experimentatl) */
 
182
        ns_t_sink = 40,         /* Kitchen sink (experimental) */
183
183
        ns_t_opt = 41,          /* EDNS0 option (meta-RR) */
 
184
        ns_t_ds = 43,           /* Delegation signer */
 
185
        ns_t_rrsig = 46,        /* Resoure Record signature */
 
186
        ns_t_nsec = 47,         /* Next Record */
 
187
        ns_t_dnskey = 48,       /* DNSKEY record */
 
188
        ns_t_nsec3 = 50,        /* Next Record v3 */
 
189
        ns_t_nsec3param = 51,   /* NSEC Parameters */
 
190
        ns_t_tlsa = 52,         /* TLSA */
184
191
        ns_t_tsig = 250,        /* Transaction signature. */
185
192
        ns_t_ixfr = 251,        /* Incremental zone transfer. */
186
193
        ns_t_axfr = 252,        /* Transfer zone of authority. */
192
199
#ifdef WIN32
193
200
#define BYTE_ORDER 1
194
201
#define LITTLE_ENDIAN 1
195
 
#elif __FreeBSD__ || __APPLE__
 
202
#elif __FreeBSD__ || __APPLE__ || __OpenBSD__
196
203
#include <machine/endian.h>
197
204
#elif __linux__
198
205
# include <endian.h>