From: wessels <> Date: Wed, 18 Jun 1997 01:00:02 +0000 (+0000) Subject: further HashID changes X-Git-Tag: SQUID_3_0_PRE1~4935 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c4dad6016e0fef2ceecaaa5bfde0df3bb0672395;p=thirdparty%2Fsquid.git further HashID changes --- diff --git a/src/net_db.cc b/src/net_db.cc index 91cdcf2915..9a96f267b3 100644 --- a/src/net_db.cc +++ b/src/net_db.cc @@ -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); }