2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00
This commit is contained in:
Bob Halley
1999-01-06 19:29:46 +00:00
parent c40d5a7080
commit 985687b4e0

View File

@@ -0,0 +1,46 @@
/*
* Copyright (C) 1999 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 INTERNET SOFTWARE CONSORTIUM DISCLAIMS
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
* CONSORTIUM 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 DNS_COMPRESS_H
#define DNS_COMPRESS_H 1
#include <isc/mem.h>
#include <dns/types.h>
#define DNS_COMPRESS_GLOBAL14 0x01 /* "normal" compression. */
#define DNS_COMPRESS_GLOBAL16 0x02 /* 16-bit global comp. */
#define DNS_COMPRESS_LOCAL 0x04 /* Local compression. */
/*
* XXX An API for manipulating these structures will be forthcoming.
* Also magic numbers, _init() and _invalidate(), etc. At that time,
* direct manipulation of the structures will be strongly discouraged.
*/
struct dns_compress {
unsigned int allowed; /* Allowed methods. */
dns_name_t owner_name; /* For local compression. */
/* XXX compression table here */
};
struct dns_decompress {
unsigned int allowed; /* Allowed methods. */
dns_name_t owner_name; /* For local compression. */
};
#endif /* DNS_COMPRESS_H */