/* * addr_hash.h: * */ #ifndef __ADDR_HASH_H_ /* include guard */ #define __ADDR_HASH_H_ #include #include #include #include "hash.h" typedef struct { struct in_addr src; struct in_addr dst; } addr_pair; typedef addr_pair key_type; /* index into hash table */ hash_type* addr_hash_create(); #endif /* __ADDR_HASH_H_ */