Changeset 92
- Timestamp:
- 04/20/04 22:56:02 (9 years ago)
- Location:
- trunk/wifidog
- Files:
-
- 3 modified
-
ChangeLog (modified) (1 diff)
-
src/commandline.c (modified) (3 diffs)
-
wifidog.conf (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog/ChangeLog
r91 r92 3 3 * fixed expiration time 4 4 5 2004-04-19 Philippe April <papril777@yahoo.com> 6 * A lot of changes regarding debugging facilities and added logging 7 to syslog 5 2004-04-20 Philippe April <papril777@yahoo.com> 6 * A lot of changes regarding debugging facilities and added logging 7 to syslog 8 * Removed possibility to specify port on command line 8 9 9 10 2004-04-19 Philippe April <papril777@yahoo.com> -
trunk/wifidog/src/commandline.c
r90 r92 42 42 printf(" -c [filename] Use this config file\n"); 43 43 printf(" -f Run in foreground\n"); 44 printf(" -p TCP port to listen on\n");45 44 printf(" -d <level> Debug level\n"); 46 45 printf(" -s Log to syslog\n"); … … 59 58 int c; 60 59 61 while (-1 != (c = getopt(argc, argv, "c:hf p:d:s"))) {60 while (-1 != (c = getopt(argc, argv, "c:hfd:s"))) { 62 61 switch(c) { 63 62 case 'h': … … 74 73 case 'f': 75 74 config.daemon = 0; 76 break;77 78 case 'p':79 if (optarg) {80 config.gw_port = atoi(optarg);81 }82 75 break; 83 76 -
trunk/wifidog/wifidog.conf
r90 r92 7 7 # 8 8 # Set this to true if you want to run as a daemon 9 Daemon 09 Daemon 1 10 10 11 11 # Parm: GatewayID
