| 30 | #include <fnmatch.h> |
| 31 | |
| 32 | static inline unsigned int address_hash(pht_hash_table_t *table, str *str_ip) { |
| 33 | return core_hash(str_ip, NULL, table->bucket_count); |
| 34 | } |
| 35 | |
| 36 | unsigned int address_node_hash(pht_hash_table_t *table, void *node) { |
| 37 | str str_ip; |
no test coverage detected