contrib/fwd: adept rule generator to data changes, implement fwd_chgif() stub
[project/luci.git] / contrib / fwd / src / fwd_rules.h
1 /*
2 * fwd - OpenWrt firewall daemon - header for iptables rule set
3 *
4 * Copyright (C) 2009 Jo-Philipp Wich <xm@subsignal.org>
5 *
6 * The fwd program is free software: you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation.
9 *
10 * The fwd program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 * See the GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with the fwd program. If not, see http://www.gnu.org/licenses/.
17 */
18
19 #ifndef __FWD_RULES_H__
20 #define __FWD_RULES_H__
21
22 #include "fwd.h"
23
24 void fwd_ipt_build_ruleset(struct fwd_handle *h);
25 void fwd_ipt_clear_ruleset(struct fwd_handle *h);
26
27 void fwd_ipt_addif(struct fwd_handle *h, const char *net);
28 void fwd_ipt_delif(struct fwd_handle *h, const char *net);
29 void fwd_ipt_chgif(struct fwd_handle *h, const char *net);
30
31 #endif
32