ipsecctrl: Remove unused code block

This commit is contained in:
Michael Tremer
2015-05-07 21:05:50 +02:00
parent 086eb9b582
commit d9e80e0b09

View 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);