Changeset 40

Show
Ignore:
Timestamp:
04/10/04 22:19:09 (9 years ago)
Author:
aprilp
Message:

indentation and FIXME

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/wifidog/src/gateway.c

    r34 r40  
    3030extern s_config config; 
    3131 
    32 void main_loop(void) 
     32void 
     33main_loop(void) 
    3334{ 
    3435        struct timeval tv; 
     
    7071                if (result < 0) { 
    7172                        /* 
    72                          * fixme 
     73                         * FIXME 
    7374                         * An error occurred - should we abort? reboot the device ? 
    7475                         */ 
     76            /* FIXME remove firewall rules before exiting */ 
    7577                        debug(D_LOG_ERR, "httpdGetConnection returned %d", 
    7678                                result); 
     
    108110} 
    109111 
    110         int 
     112int 
    111113main(int argc, char **argv) 
    112114{ 
     
    153155} 
    154156 
    155 void termination_handler(int s) 
     157void 
     158termination_handler(int s) 
    156159{ 
    157160        fw_destroy(); 
     
    161164} 
    162165 
    163 void init_signals() 
     166void 
     167init_signals() 
    164168{ 
    165169        struct sigaction sa;