Changeset 297

Show
Ignore:
Timestamp:
12/07/04 17:55:17 (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
  • bump version to alpha3
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wifidog/ChangeLog

    r295 r297  
    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        * bump version to alpha3 
     5         
    362004-11-29 Alexandre Carmel-Veilleux <acv@acv.ca> 
    47        * wifidog.conf: Fixed firewall rule bug. 
  • trunk/wifidog/configure.in

    r291 r297  
    2121WIFIDOG_MAJOR_VERSION=1 
    2222WIFIDOG_MINOR_VERSION=1 
    23 WIFIDOG_MICRO_VERSION=0-alpha2 
     23WIFIDOG_MICRO_VERSION=0-alpha3 
    2424WIFIDOG_VERSION=$WIFIDOG_MAJOR_VERSION.$WIFIDOG_MINOR_VERSION.$WIFIDOG_MICRO_VERSION 
    2525 
  • trunk/wifidog/src/firewall.c

    r277 r297  
    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();