From c4dad6016e0fef2ceecaaa5bfde0df3bb0672395 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Wed, 18 Jun 1997 01:00:02 +0000 Subject: [PATCH] further HashID changes --- src/net_db.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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); } -- 2.47.2