Changeset 173
- Timestamp:
- 08/06/04 17:29:54 (9 years ago)
- Location:
- trunk/wifidog
- Files:
-
- 4 modified
-
ChangeLog (modified) (1 diff)
-
src/conf.c (modified) (3 diffs)
-
src/conf.h (modified) (1 diff)
-
wifidog.conf (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog/ChangeLog
r170 r173 1 1 # $Header$ 2 2004-08-06 Alexandre Carmel-Veilleux <acv@acv.ca> 3 * AuthservPath no longer mandatory in config file. 4 2 5 2004-08-04 Philippe April <wifidog@philippeapril.com> 3 6 * Renamed iptables.[ch] to fw_iptables.[ch] -
trunk/wifidog/src/conf.c
r150 r173 126 126 config.authserv_hostname = NULL; 127 127 config.authserv_port = DEFAULT_AUTHSERVPORT; 128 config.authserv_path = NULL;128 config.authserv_path = strdup(DEFAULT_AUTHSERVPATH); 129 129 config.authserv_loginurl = NULL; 130 130 config.httpdname = NULL; … … 246 246 break; 247 247 case oAuthservPath: 248 free(config.authserv_path); 248 249 config.authserv_path = strdup(p1); 249 250 break; … … 307 308 config_notnull(config.gw_address, "GatewayAddress"); 308 309 config_notnull(config.authserv_hostname, "AuthservHostname"); 309 config_notnull(config.authserv_path, "AuthservPath");310 310 config_notnull(config.authserv_loginurl, "AuthservLoginUrl"); 311 311 -
trunk/wifidog/src/conf.h
r150 r173 43 43 #define DEFAULT_SYSLOG_FACILITY LOG_DAEMON 44 44 #define DEFAULT_WDCTL_SOCK "/tmp/wdctl.sock" 45 #define DEFAULT_AUTHSERVPATH "/wifidog/auth" 45 46 /*@}*/ 46 47 -
trunk/wifidog/wifidog.conf
r120 r173 73 73 # Set this to the authentication path on the auth server 74 74 # Usually this is /wifidog/auth/ 75 AuthservPath /wifidog/auth/75 #AuthservPath /wifidog/auth/ 76 76 77 77 # Parm: AuthservLoginUrl
