]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Add the concept of named hashes.
authorTed Lemon <source@isc.org>
Sun, 19 Apr 1998 23:22:20 +0000 (23:22 +0000)
committerTed Lemon <source@isc.org>
Sun, 19 Apr 1998 23:22:20 +0000 (23:22 +0000)
includes/hash.h

index 46381d6240eddb754951988b3f2018634f89926d..d86babad4d0cfd3b6732bdb3ffca458d8276bd84 100644 (file)
@@ -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;
+};