Show
Ignore:
Timestamp:
10/28/04 12:12:44 (9 years ago)
Author:
alexcv
Message:

Possibly broken check in

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog/src/fw_iptables.c

    r180 r252  
    9595     
    9696    pthread_mutex_unlock(&config_mutex); 
     97 
     98    /** Insert global rules BEFORE the "defaults" */ 
    9799     
    98100    iptables_do_command("-t nat -A " TABLE_WIFIDOG_VALIDATE " -p udp --dport 67 -j ACCEPT"); 
     
    121123    pthread_mutex_unlock(&config_mutex); 
    122124 
     125    /** Insert global rules BEFORE the "defaults" */ 
     126 
    123127    iptables_do_command("-t nat -A " TABLE_WIFIDOG_UNKNOWN " -p udp --dport 67 -j ACCEPT"); 
    124128    iptables_do_command("-t nat -A " TABLE_WIFIDOG_UNKNOWN " -p tcp --dport 67 -j ACCEPT"); 
     
    128132 
    129133    iptables_do_command("-t nat -N " TABLE_WIFIDOG_KNOWN); 
     134 
     135    /** Insert global rules BEFORE the "defaults" */ 
     136 
    130137    iptables_do_command("-t nat -A " TABLE_WIFIDOG_KNOWN " -j ACCEPT"); 
    131138