]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Add a lookup function to the option universe structure.
authorTed Lemon <source@isc.org>
Sun, 19 Apr 1998 23:23:34 +0000 (23:23 +0000)
committerTed Lemon <source@isc.org>
Sun, 19 Apr 1998 23:23:34 +0000 (23:23 +0000)
includes/tree.h

index c2df41f52b11a06b33bb33dc457500e0076fc004..e5440ef9e9339021272cf7d764693a8d3750e400 100644 (file)
@@ -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];
 };