Added src/dest bandwidth aggregation.

This commit is contained in:
pdw
2002-04-03 21:28:41 +00:00
parent 6f71a8ef68
commit 0bb20d3675
6 changed files with 94 additions and 19 deletions

1
hash.h
View File

@@ -35,5 +35,6 @@ hash_status_enum hash_insert(hash_type*, void* key, void *rec);
hash_status_enum hash_delete(hash_type* hash_table, void* key);
hash_status_enum hash_find(hash_type* hash_table, void* key, void** rec);
hash_status_enum hash_next_item(hash_type* hash_table, hash_node_type** ppnode);
void hash_delete_all(hash_type* hash_table);
#endif /* __HASH_H_ */