]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
further HashID changes
authorwessels <>
Wed, 18 Jun 1997 01:00:02 +0000 (01:00 +0000)
committerwessels <>
Wed, 18 Jun 1997 01:00:02 +0000 (01:00 +0000)
src/net_db.cc

index 91cdcf29153985c66a54834fc0e0441d713e733c..9a96f267b38752bfc232c222b7688990cc444144 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: net_db.cc,v 1.41 1997/06/17 04:54:11 wessels Exp $
+ * $Id: net_db.cc,v 1.42 1997/06/17 19:00:02 wessels Exp $
  *
  * DEBUG: section 37    Network Measurement Database
  * AUTHOR: Duane Wessels
@@ -38,8 +38,8 @@ static hash_table * host_table = NULL;
 
 static struct in_addr networkFromInaddr _PARAMS((struct in_addr a));
 static void netdbRelease _PARAMS((netdbEntry * n));
-static netdbEntry *netdbGetFirst _PARAMS((HashID table));
-static netdbEntry *netdbGetNext _PARAMS((HashID table));
+static netdbEntry *netdbGetFirst _PARAMS((hash_table * table));
+static netdbEntry *netdbGetNext _PARAMS((hash_table * table));
 static void netdbHashInsert _PARAMS((netdbEntry * n, struct in_addr addr));
 static void netdbHashDelete _PARAMS((const char *key));
 static void netdbHashLink _PARAMS((netdbEntry * n, const char *hostname));
@@ -113,13 +113,13 @@ netdbLookupHost(const char *key)
 }
 
 static netdbEntry *
-netdbGetFirst(HashID table)
+netdbGetFirst(hash_table * table)
 {
     return (netdbEntry *) hash_first(table);
 }
 
 static netdbEntry *
-netdbGetNext(HashID table)
+netdbGetNext(hash_table * table)
 {
     return (netdbEntry *) hash_next(table);
 }