Changeset 283
- Timestamp:
- 11/21/04 10:20:02 (4 years ago)
- Files:
-
- branches/WIFIDOG_1_0_X/wifidog/ChangeLog (modified) (1 diff)
- branches/WIFIDOG_1_0_X/wifidog/configure.in (modified) (1 diff)
- branches/WIFIDOG_1_0_X/wifidog/src/fw_iptables.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/WIFIDOG_1_0_X/wifidog/ChangeLog
r280 r283 1 1 # $Header$ 2 2004-11-21 Philippe April <philippe@philippeapril.com> 3 * src/fw_iptables.c: changed call to iptables to use IP address instead of 4 host name, in case resolution fails. 5 2 6 2004-11-18 Philippe April <philippe@philippeapril.com> 3 7 * ipkg/rules: fixed conffiles, it was not doing it the right way branches/WIFIDOG_1_0_X/wifidog/configure.in
r261 r283 21 21 WIFIDOG_MAJOR_VERSION=1 22 22 WIFIDOG_MINOR_VERSION=0 23 WIFIDOG_MICRO_VERSION=2-pre 123 WIFIDOG_MICRO_VERSION=2-pre3 24 24 WIFIDOG_VERSION=$WIFIDOG_MAJOR_VERSION.$WIFIDOG_MINOR_VERSION.$WIFIDOG_MICRO_VERSION 25 25 branches/WIFIDOG_1_0_X/wifidog/src/fw_iptables.c
r278 r283 92 92 for (auth_server = config->auth_servers; auth_server != NULL; 93 93 auth_server = auth_server->next) { 94 iptables_do_command("-t nat -A " TABLE_WIFIDOG_AUTHSERVERS " -d %s -j ACCEPT", auth_server->authserv_hostname);94 iptables_do_command("-t nat -A " TABLE_WIFIDOG_AUTHSERVERS " -d %s -j ACCEPT", inet_ntoa(auth_server->last_ip)); 95 95 } 96 96
