summaryrefslogtreecommitdiffstats
path: root/include/ignore.h
blob: 40cb02df6818fc09f4c172e4bf35596da0aecfc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef _IGNORE_H_
#define _IGNORE_H_

struct ignore_pool {
	struct hashtable *h;
};

struct ignore_pool *ignore_pool_create(u_int8_t family);
void ignore_pool_destroy(struct ignore_pool *ip);
int ignore_pool_add(struct ignore_pool *ip, void *data);

#endif