/*
- * $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
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));
}
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);
}