Changeset 298
- Timestamp:
- 12/07/04 23:58:28 (4 years ago)
- Files:
-
- branches/WIFIDOG_1_0_X/wifidog/ChangeLog (modified) (1 diff)
- branches/WIFIDOG_1_0_X/wifidog/NEWS (modified) (1 diff)
- branches/WIFIDOG_1_0_X/wifidog/configure.in (modified) (1 diff)
- branches/WIFIDOG_1_0_X/wifidog/src/firewall.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/WIFIDOG_1_0_X/wifidog/ChangeLog
r286 r298 1 1 # $Header$ 2 2 2004-12-07 Benoit Gr�ire <bock@step.polymtl.ca> 3 * src/firewall.c: Fix reversed incoming and outgoing connections in statistics code 4 * Release 1.0.2 5 3 6 2004-11-21 Alexandre Carmel-Veilleux <acv@acv.ca> 4 7 * src/fw_iptables.c: reverted phil's change and fixed it properly branches/WIFIDOG_1_0_X/wifidog/NEWS
r9 r298 1 WifiDog 0.1: 2 -Initial prototype release 1 WifiDog 1.0.2: 2 -Fix reversed incoming and outgoing connections in statistics reported to the auth server 3 -Will now gracefully handle auth servers changing IP adress. 4 -Fixes two bugs in byte counting. (Possible missed data, and incoming and outgoing were reversed. 5 -Fixed file descriptor leaks 6 -wdctl_status now returns all connected users. 7 -worked around sed -i not being available on all platform 8 -ipkg no longuer overwrites config file 9 -Several code changes in thread handling and libhttpd to fix occasional hangs. 10 11 WifiDog 1.0.0: 12 -Initial release branches/WIFIDOG_1_0_X/wifidog/configure.in
r287 r298 21 21 WIFIDOG_MAJOR_VERSION=1 22 22 WIFIDOG_MINOR_VERSION=0 23 WIFIDOG_MICRO_VERSION=2 -pre423 WIFIDOG_MICRO_VERSION=2 24 24 WIFIDOG_VERSION=$WIFIDOG_MAJOR_VERSION.$WIFIDOG_MINOR_VERSION.$WIFIDOG_MICRO_VERSION 25 25 branches/WIFIDOG_1_0_X/wifidog/src/firewall.c
r278 r298 181 181 token = strdup(p1->token); 182 182 mac = strdup(p1->mac); 183 outgoing = p1->counters. incoming;184 incoming = p1->counters. outgoing;183 outgoing = p1->counters.outgoing; 184 incoming = p1->counters.incoming; 185 185 186 186 UNLOCK_CLIENT_LIST();
