From: Ted Lemon Date: Sun, 19 Apr 1998 23:23:34 +0000 (+0000) Subject: Add a lookup function to the option universe structure. X-Git-Tag: carrel-2~121 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b204155c664b36cbace4e03b2d43b11b0cdc671;p=thirdparty%2Fdhcp.git Add a lookup function to the option universe structure. --- diff --git a/includes/tree.h b/includes/tree.h index c2df41f52..e5440ef9e 100644 --- a/includes/tree.h +++ b/includes/tree.h @@ -93,8 +93,12 @@ struct tree_cache { #define TC_TEMPORARY 2 }; +struct data_string; /* forward */ +struct packet; /* forward */ + struct universe { char *name; + struct data_string (*lookup_func) PROTO ((struct packet *, int)); struct hash_table *hash; struct option *options [256]; };