2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 13:28:14 +00:00

Define option_chain_head structure.

This commit is contained in:
Ted Lemon 2001-01-25 08:26:04 +00:00
parent be80b1a62c
commit 04d229001f

View 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;