summaryrefslogtreecommitdiff
path: root/includes/tree.h
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>2001-01-25 08:26:04 +0000
committerTed Lemon <source@isc.org>2001-01-25 08:26:04 +0000
commit04d229001f04ebbe0f009a90c103f77436df1d2d (patch)
tree52b1fc26595708038524efeee7d61eccffe8d734 /includes/tree.h
parentbe80b1a62ca88a8fb8e79da8b87f7787749b9be9 (diff)
downloadisc-dhcp-04d229001f04ebbe0f009a90c103f77436df1d2d.tar.gz
Define option_chain_head structure.
Diffstat (limited to 'includes/tree.h')
-rw-r--r--includes/tree.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/includes/tree.h b/includes/tree.h
index 6f375028..30770be6 100644
--- a/includes/tree.h
+++ b/includes/tree.h
@@ -3,7 +3,7 @@
Definitions for address trees... */
/*
- * Copyright (c) 1996-1999 Internet Software Consortium.
+ * Copyright (c) 1996-2001 Internet Software Consortium.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -47,6 +47,11 @@ typedef struct _pair {
struct _pair *cdr;
} *pair;
+struct option_chain_head {
+ int refcnt;
+ pair first;
+};
+
struct enumeration_value {
const char *name;
u_int8_t value;