From 04d229001f04ebbe0f009a90c103f77436df1d2d Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Thu, 25 Jan 2001 08:26:04 +0000 Subject: [PATCH] Define option_chain_head structure. --- includes/tree.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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;