Changeset 298

Show
Ignore:
Timestamp:
12/07/04 23:58:28 (4 years ago)
Author:
benoitg
Message:

2004-12-07 Benoit Gr�goire <bock@step.polymtl.ca>

  • src/firewall.c: Fix reversed incoming and outgoing connections in statistics code
  • Release 1.0.2
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/WIFIDOG_1_0_X/wifidog/ChangeLog

    r286 r298  
    11# $Header$ 
    2  
     22004-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         
    362004-11-21 Alexandre Carmel-Veilleux <acv@acv.ca> 
    47        * 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 
     1WifiDog 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 
     11WifiDog 1.0.0: 
     12        -Initial release 
  • branches/WIFIDOG_1_0_X/wifidog/configure.in

    r287 r298  
    2121WIFIDOG_MAJOR_VERSION=1 
    2222WIFIDOG_MINOR_VERSION=0 
    23 WIFIDOG_MICRO_VERSION=2-pre4 
     23WIFIDOG_MICRO_VERSION=2 
    2424WIFIDOG_VERSION=$WIFIDOG_MAJOR_VERSION.$WIFIDOG_MINOR_VERSION.$WIFIDOG_MICRO_VERSION 
    2525 
  • branches/WIFIDOG_1_0_X/wifidog/src/firewall.c

    r278 r298  
    181181        token = strdup(p1->token); 
    182182        mac = strdup(p1->mac); 
    183         outgoing = p1->counters.incoming; 
    184         incoming = p1->counters.outgoing; 
     183        outgoing = p1->counters.outgoing; 
     184        incoming = p1->counters.incoming; 
    185185 
    186186        UNLOCK_CLIENT_LIST();