mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 15:05:23 +00:00
document the rdatasetheader next and down pointers
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: rbtdb.c,v 1.170 2001/10/25 21:39:48 bwelling Exp $ */
|
/* $Id: rbtdb.c,v 1.171 2001/10/27 00:27:54 gson Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Principal Author: Bob Halley
|
* Principal Author: Bob Halley
|
||||||
@@ -107,8 +107,21 @@ typedef struct rdatasetheader {
|
|||||||
* We don't use the LIST macros, because the LIST structure has
|
* We don't use the LIST macros, because the LIST structure has
|
||||||
* both head and tail pointers, and is doubly linked.
|
* both head and tail pointers, and is doubly linked.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
struct rdatasetheader *next;
|
struct rdatasetheader *next;
|
||||||
|
/*
|
||||||
|
* If this is the top header for an rdataset, 'next' points
|
||||||
|
* to the top header for the next rdataset (i.e., the next type).
|
||||||
|
* Otherwise, it points up to the header whose down pointer points
|
||||||
|
* at this header.
|
||||||
|
*/
|
||||||
|
|
||||||
struct rdatasetheader *down;
|
struct rdatasetheader *down;
|
||||||
|
/*
|
||||||
|
* Points to the header for the next older version of
|
||||||
|
* this rdataset.
|
||||||
|
*/
|
||||||
|
|
||||||
} rdatasetheader_t;
|
} rdatasetheader_t;
|
||||||
|
|
||||||
#define RDATASET_ATTR_NONEXISTENT 0x0001
|
#define RDATASET_ATTR_NONEXISTENT 0x0001
|
||||||
|
Reference in New Issue
Block a user