From: Ted Lemon Date: Thu, 25 Jan 2001 08:26:04 +0000 (+0000) Subject: Define option_chain_head structure. X-Git-Tag: V3-BETA-2-PATCH-15~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04d229001f04ebbe0f009a90c103f77436df1d2d;p=thirdparty%2Fdhcp.git Define option_chain_head structure. --- diff --git a/includes/tree.h b/includes/tree.h index 6f3750284..30770be6c 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;