Created iftop-dump

This commit is contained in:
pdw
2007-03-03 16:01:48 +00:00
parent 86013fabd6
commit 6458ed04f5
8 changed files with 578 additions and 17 deletions

23
counter_hash.h Normal file
View File

@@ -0,0 +1,23 @@
/*
* addr_hash.h:
*
*/
#ifndef __ADDR_HASH_H_ /* include guard */
#define __ADDR_HASH_H_
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include "hash.h"
typedef struct {
unsigned long long sent;
unsigned long long recv;
} counter_type;
typedef counter_type key_type; /* index into hash table */
hash_type* counter_hash_create(void);
#endif /* __ADDR_HASH_H_ */