]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
ipsecctrl: Remove unused code block
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 7 May 2015 19:05:50 +0000 (21:05 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 7 May 2015 19:05:50 +0000 (21:05 +0200)
src/misc-progs/ipsecctrl.c

index eb3fc4984f22ccfe4e46a2f2f804a60bf4386559..00a38c7aa36e57b105cd180fb74b45fed1ccfa46 100644 (file)
@@ -58,17 +58,7 @@ static void ipsec_reload() {
 void open_physical (char *interface, int nat_traversal_port) {
         char str[STRING_SIZE];
 
-        // GRE ???
-//        sprintf(str, "/sbin/iptables -A " phystable " -p 47  -i %s -j ACCEPT", interface);
-//        safe_system(str);
-        // ESP
-//        sprintf(str, "/sbin/iptables -A " phystable " -p 50  -i %s -j ACCEPT", interface);
-//        safe_system(str);
-        // AH
-//        sprintf(str, "/sbin/iptables -A " phystable " -p 51  -i %s -j ACCEPT", interface);
-//        safe_system(str);
         // IKE
-
         sprintf(str, "/sbin/iptables -D IPSECINPUT -p udp -i %s --dport 500 -j ACCEPT >/dev/null 2>&1", interface);
         safe_system(str);
         sprintf(str, "/sbin/iptables -A IPSECINPUT -p udp -i %s --dport 500 -j ACCEPT", interface);