Changeset 134
- Timestamp:
- 05/25/04 13:59:51 (9 years ago)
- Location:
- trunk/wifidog/src
- Files:
-
- 5 modified
-
commandline.c (modified) (2 diffs)
-
commandline.h (modified) (1 diff)
-
conf.c (modified) (1 diff)
-
gateway.c (modified) (2 diffs)
-
gateway.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog/src/commandline.c
r119 r134 32 32 #include "conf.h" 33 33 34 static void usage(void); 35 34 36 extern s_config config; 35 37 … … 39 41 * Prints usage, called when wifidog is run with -h or with an unknown option 40 42 */ 41 void43 static void 42 44 usage(void) 43 45 { -
trunk/wifidog/src/commandline.h
r9 r134 28 28 #define _COMMANDLINE_H_ 29 29 30 void usage(void);31 30 void parse_commandline(int, char**); 32 31 -
trunk/wifidog/src/conf.c
r133 r134 59 59 60 60 s_config config; 61 int missing_parms;61 static int missing_parms; 62 62 63 63 typedef enum { -
trunk/wifidog/src/gateway.c
r128 r134 52 52 #include "http.h" 53 53 54 static void init_signals(void); 55 static void main_loop(void); 56 54 57 extern s_config config; 55 58 56 59 pthread_mutex_t sigterm_mutex = PTHREAD_MUTEX_INITIALIZER; 57 60 58 void61 static void 59 62 main_loop(void) 60 63 { … … 194 197 } 195 198 196 void199 static void 197 200 init_signals(void) 198 201 { -
trunk/wifidog/src/gateway.h
r64 r134 30 30 void termination_handler(int s); 31 31 void sigchld_handler(int s); 32 void init_signals(void);33 32 void check_counters(void); 34 33 void fork_counter_checker(void);
