Changeset 170

Show
Ignore:
Timestamp:
08/04/04 16:08:44 (9 years ago)
Author:
aprilp
Message:

Renamed iptables.[ch] to fw_iptables.[ch]

Location:
trunk/wifidog
Files:
2 added
2 removed
7 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog/ChangeLog

    r161 r170  
    11# $Header$ 
     22004-08-04 Philippe April <wifidog@philippeapril.com> 
     3    * Renamed iptables.[ch] to fw_iptables.[ch] 
    24 
    352004-08-03 Alexandre Carmel-Veilleux <acv@acv.ca> 
  • trunk/wifidog/src/Makefile.am

    r150 r170  
    1313        conf.c \ 
    1414        debug.c \ 
    15         iptables.c \ 
     15        fw_iptables.c \ 
    1616        firewall.c \ 
    1717        gateway.c \ 
     
    2727        conf.h \ 
    2828        debug.h \ 
    29         iptables.h \ 
     29        fw_iptables.h \ 
    3030        firewall.h \ 
    3131        gateway.h \ 
  • trunk/wifidog/src/auth.c

    r144 r170  
    4141#include "auth.h" 
    4242#include "centralserver.h" 
    43 #include "iptables.h" 
     43#include "fw_iptables.h" 
    4444#include "firewall.h" 
    4545#include "client_list.h" 
  • trunk/wifidog/src/client_list.h

    r150 r170  
    6666 
    6767/** @brief Finds a client only by its IP */ 
    68 t_client *client_list_find_by_ip(char *ip); /* needed by iptables.c, auth.c  
     68t_client *client_list_find_by_ip(char *ip); /* needed by fw_iptables.c, auth.c  
    6969                                             * and wdctl_thread.c */ 
    7070 
  • trunk/wifidog/src/firewall.c

    r136 r170  
    4545#include "conf.h" 
    4646#include "firewall.h" 
    47 #include "iptables.h" 
     47#include "fw_iptables.h" 
    4848#include "auth.h" 
    4949#include "centralserver.h" 
  • trunk/wifidog/src/firewall.h

    r136 r170  
    2828#define _FIREWALL_H_ 
    2929 
    30 /** Used by iptables.c */ 
     30/** Used by fw_iptables.c */ 
    3131typedef enum _t_fw_marks { 
    3232    FW_MARK_PROBATION = 1, /**< @brief The client is in probation period and must be authenticated  
  • trunk/wifidog/src/wdctl_thread.c

    r166 r170  
    4343#include "auth.h" 
    4444#include "centralserver.h" 
    45 #include "iptables.h" 
     45#include "fw_iptables.h" 
    4646#include "firewall.h" 
    4747#include "client_list.h"