summaryrefslogtreecommitdiff
path: root/accel-pppd/libnetlink/ipset.h
blob: 7121eaa07c40f4649d69e3769f0122a2d61ec8b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __IPSET_H
#define __IPSET_H

#include <netinet/in.h>

int ipset_add(const char *name, in_addr_t addr);
int ipset_del(const char *name, in_addr_t addr);
int ipset_flush(const char *name);

#endif