2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

add dirty and references

This commit is contained in:
Bob Halley
1999-01-28 23:50:55 +00:00
parent 923e2ea400
commit c5bd4120ee

View File

@@ -41,6 +41,8 @@ typedef struct dns_rbt_node {
struct dns_rbt_node *right;
struct dns_rbt_node *down;
enum { red, black } color;
unsigned int dirty:1;
unsigned int references:31;
void *data;
unsigned int name_length;
} dns_rbtnode_t;