From: Ted Lemon Date: Sun, 19 Apr 1998 23:22:20 +0000 (+0000) Subject: Add the concept of named hashes. X-Git-Tag: carrel-2~122 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ff4044553192397fbef1568d855f40b550c55db9;p=thirdparty%2Fdhcp.git Add the concept of named hashes. --- diff --git a/includes/hash.h b/includes/hash.h index 46381d624..d86babad4 100644 --- a/includes/hash.h +++ b/includes/hash.h @@ -54,3 +54,8 @@ struct hash_table { struct hash_bucket *buckets [DEFAULT_HASH_SIZE]; }; +struct named_hash { + struct named_hash *next; + char *name; + struct hash_table *hash; +};