summaryrefslogtreecommitdiffstats
path: root/contrib/bind9/lib/dns/include/dns/rdataslab.h
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/bind9/lib/dns/include/dns/rdataslab.h')
-rw-r--r--contrib/bind9/lib/dns/include/dns/rdataslab.h66
1 files changed, 31 insertions, 35 deletions
diff --git a/contrib/bind9/lib/dns/include/dns/rdataslab.h b/contrib/bind9/lib/dns/include/dns/rdataslab.h
index a0912db..b693a71 100644
--- a/contrib/bind9/lib/dns/include/dns/rdataslab.h
+++ b/contrib/bind9/lib/dns/include/dns/rdataslab.h
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2005 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2002 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
@@ -15,34 +15,33 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* $Id: rdataslab.h,v 1.20.2.2.2.4 2004/03/08 09:04:39 marka Exp $ */
+/* $Id: rdataslab.h,v 1.25.18.2 2005/04/29 00:16:19 marka Exp $ */
#ifndef DNS_RDATASLAB_H
#define DNS_RDATASLAB_H 1
-/*
- * DNS Rdata Slab
- *
+/*! \file
+ * \brief
* Implements storage of rdatasets into slabs of memory.
*
* MP:
- * Clients of this module must impose any required synchronization.
+ *\li Clients of this module must impose any required synchronization.
*
* Reliability:
- * This module deals with low-level byte streams. Errors in any of
+ *\li This module deals with low-level byte streams. Errors in any of
* the functions are likely to crash the server or corrupt memory.
*
- * If the caller passes invalid memory references, these functions are
+ *\li If the caller passes invalid memory references, these functions are
* likely to crash the server or corrupt memory.
*
* Resources:
- * None.
+ *\li None.
*
* Security:
- * None.
+ *\li None.
*
* Standards:
- * None.
+ *\li None.
*/
/***
@@ -65,22 +64,22 @@ ISC_LANG_BEGINDECLS
isc_result_t
dns_rdataslab_fromrdataset(dns_rdataset_t *rdataset, isc_mem_t *mctx,
isc_region_t *region, unsigned int reservelen);
-/*
+/*%<
* Slabify a rdataset. The slab area will be allocated and returned
* in 'region'.
*
* Requires:
- * 'rdataset' is valid.
+ *\li 'rdataset' is valid.
*
* Ensures:
- * 'region' will have base pointing to the start of allocated memory,
+ *\li 'region' will have base pointing to the start of allocated memory,
* with the slabified region beginning at region->base + reservelen.
* region->length contains the total length allocated.
*
* Returns:
- * ISC_R_SUCCESS - successful completion
- * ISC_R_NOMEMORY - no memory.
- * <XXX others>
+ *\li ISC_R_SUCCESS - successful completion
+ *\li ISC_R_NOMEMORY - no memory.
+ *\li XXX others
*/
void
@@ -88,27 +87,26 @@ dns_rdataslab_tordataset(unsigned char *slab, unsigned int reservelen,
dns_rdataclass_t rdclass, dns_rdatatype_t rdtype,
dns_rdatatype_t covers, dns_ttl_t ttl,
dns_rdataset_t *rdataset);
-/*
+/*%<
* Construct an rdataset from a slab.
*
* Requires:
- * 'slab' points to a slab.
- * 'rdataset' is disassociated.
+ *\li 'slab' points to a slab.
+ *\li 'rdataset' is disassociated.
*
* Ensures:
- * 'rdataset' is associated and points to a valid rdataest.
+ *\li 'rdataset' is associated and points to a valid rdataest.
*/
-
unsigned int
dns_rdataslab_size(unsigned char *slab, unsigned int reservelen);
-/*
+/*%<
* Return the total size of an rdataslab.
*
* Requires:
- * 'slab' points to a slab.
+ *\li 'slab' points to a slab.
*
* Returns:
- * The number of bytes in the slab, including the reservelen.
+ *\li The number of bytes in the slab, including the reservelen.
*/
isc_result_t
@@ -116,7 +114,7 @@ dns_rdataslab_merge(unsigned char *oslab, unsigned char *nslab,
unsigned int reservelen, isc_mem_t *mctx,
dns_rdataclass_t rdclass, dns_rdatatype_t type,
unsigned int flags, unsigned char **tslabp);
-/*
+/*%<
* Merge 'oslab' and 'nslab'.
*/
@@ -125,7 +123,7 @@ dns_rdataslab_subtract(unsigned char *mslab, unsigned char *sslab,
unsigned int reservelen, isc_mem_t *mctx,
dns_rdataclass_t rdclass, dns_rdatatype_t type,
unsigned int flags, unsigned char **tslabp);
-/*
+/*%<
* Subtract 'sslab' from 'mslab'. If 'exact' is true then all elements
* of 'sslab' must exist in 'mslab'.
*
@@ -136,30 +134,28 @@ dns_rdataslab_subtract(unsigned char *mslab, unsigned char *sslab,
isc_boolean_t
dns_rdataslab_equal(unsigned char *slab1, unsigned char *slab2,
unsigned int reservelen);
-
-/*
+/*%<
* Compare two rdataslabs for equality. This does _not_ do a full
* DNSSEC comparison.
*
* Requires:
- * 'slab1' and 'slab2' point to slabs.
+ *\li 'slab1' and 'slab2' point to slabs.
*
* Returns:
- * ISC_TRUE if the slabs are equal, ISC_FALSE otherwise.
+ *\li ISC_TRUE if the slabs are equal, ISC_FALSE otherwise.
*/
-
isc_boolean_t
dns_rdataslab_equalx(unsigned char *slab1, unsigned char *slab2,
unsigned int reservelen, dns_rdataclass_t rdclass,
dns_rdatatype_t type);
-/*
+/*%<
* Compare two rdataslabs for DNSSEC equality.
*
* Requires:
- * 'slab1' and 'slab2' point to slabs.
+ *\li 'slab1' and 'slab2' point to slabs.
*
* Returns:
- * ISC_TRUE if the slabs are equal, ISC_FALSE otherwise.
+ *\li ISC_TRUE if the slabs are equal, #ISC_FALSE otherwise.
*/
ISC_LANG_ENDDECLS
OpenPOWER on IntegriCloud