]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/blame - src/misc-progs/forwardfwctrl.c
Merge remote-tracking branch 'ms/firewall-new' into firewall
[people/teissler/ipfire-2.x.git] / src / misc-progs / forwardfwctrl.c
CommitLineData
b4f8d26c
MT
1/* This file is part of the IPFire Firewall.
2 *
3 * This program is distributed under the terms of the GNU General Public
4 * Licence. See the file COPYING for details.
5 *
6 */
7
8#include <stdlib.h>
9#include <stdio.h>
10#include <string.h>
11#include <unistd.h>
12#include <sys/types.h>
13#include <fcntl.h>
14#include "setuid.h"
15
16int main(int argc, char *argv[]) {
17
18 if (!(initsetuid()))
19 exit(1);
20
231499fc
AM
21 if(argc > 1)
22 safe_system("/var/ipfire/forward/bin/rules.pl flush");
23 else
24 safe_system("/var/ipfire/forward/bin/rules.pl");
25
b4f8d26c
MT
26 return 0;
27}