compress.h revision 985687b4e080182c1a3a2173df02b94a5b78b24f
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley/*
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * Copyright (C) 1999 Internet Software Consortium.
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley *
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * Permission to use, copy, modify, and distribute this software for any
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * purpose with or without fee is hereby granted, provided that the above
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * copyright notice and this permission notice appear in all copies.
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley *
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * SOFTWARE.
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley */
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley#ifndef DNS_COMPRESS_H
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley#define DNS_COMPRESS_H 1
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley#include <isc/mem.h>
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley#include <dns/types.h>
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley#define DNS_COMPRESS_GLOBAL14 0x01 /* "normal" compression. */
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley#define DNS_COMPRESS_GLOBAL16 0x02 /* 16-bit global comp. */
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley#define DNS_COMPRESS_LOCAL 0x04 /* Local compression. */
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley/*
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * XXX An API for manipulating these structures will be forthcoming.
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * Also magic numbers, _init() and _invalidate(), etc. At that time,
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley * direct manipulation of the structures will be strongly discouraged.
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley */
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halleystruct dns_compress {
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley unsigned int allowed; /* Allowed methods. */
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley dns_name_t owner_name; /* For local compression. */
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley /* XXX compression table here */
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley};
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halleystruct dns_decompress {
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley unsigned int allowed; /* Allowed methods. */
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley dns_name_t owner_name; /* For local compression. */
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley};
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley
985687b4e080182c1a3a2173df02b94a5b78b24fBob Halley#endif /* DNS_COMPRESS_H */