]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Define option_chain_head structure.
authorTed Lemon <source@isc.org>
Thu, 25 Jan 2001 08:26:04 +0000 (08:26 +0000)
committerTed Lemon <source@isc.org>
Thu, 25 Jan 2001 08:26:04 +0000 (08:26 +0000)
includes/tree.h

index 6f37502841eab6b95be458faf383638ca64f6706..30770be6cf008d5365d9e4b0cc019f8fbd7184c3 100644 (file)
@@ -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;