~kernevil/ubuntu/trusty/bind9/sdlz-hmac-keys

« back to all changes in this revision

Viewing changes to lib/dns/include/dns/rdata.h

  • Committer: Package Import Robot
  • Author(s): LaMont Jones, Matthew Grant, LaMont Jones
  • Date: 2012-10-29 08:37:49 UTC
  • mfrom: (1.9.2)
  • Revision ID: package-import@ubuntu.com-20121029083749-r9inpzl0yuj9xdlu
Tags: 1:9.8.4.dfsg-1
[Matthew Grant]

* Turn off dlopen as it was causing test compile failures.
* Add missing library .postrm files for debhelper

[LaMont Jones]

* New upstream version
* soname fixup
* Ack NMUs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2004-2009  Internet Systems Consortium, Inc. ("ISC")
 
2
 * Copyright (C) 2004-2009, 2012  Internet Systems Consortium, Inc. ("ISC")
3
3
 * Copyright (C) 1998-2003  Internet Software Consortium.
4
4
 *
5
5
 * Permission to use, copy, modify, and/or distribute this software for any
15
15
 * PERFORMANCE OF THIS SOFTWARE.
16
16
 */
17
17
 
18
 
/* $Id: rdata.h,v 1.77 2009-12-04 21:09:33 marka Exp $ */
 
18
/* $Id$ */
19
19
 
20
20
#ifndef DNS_RDATA_H
21
21
#define DNS_RDATA_H 1
147
147
        (((rdata)->flags & ~(DNS_RDATA_UPDATE|DNS_RDATA_OFFLINE)) == 0)
148
148
 
149
149
/*
 
150
 * The maximum length of a RDATA that can be sent on the wire.
 
151
 * Max packet size (65535) less header (12), less name (1), type (2),
 
152
 * class (2), ttl(4), length (2).
 
153
 *
 
154
 * None of the defined types that support name compression can exceed
 
155
 * this and all new types are to be sent uncompressed.
 
156
 */
 
157
 
 
158
#define DNS_RDATA_MAXLENGTH     65512U
 
159
 
 
160
/*
150
161
 * Flags affecting rdata formatting style.  Flags 0xFFFF0000
151
162
 * are used by masterfile-level formatting and defined elsewhere.
152
163
 * See additional comments at dns_rdata_tofmttext().