From: Felix Fietkau Date: Tue, 8 Oct 2013 11:09:27 +0000 (+0000) Subject: hostapd: Add eap_reauth_period config option X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=1cc69c6c629182f407be73e77233503364aa57ad hostapd: Add eap_reauth_period config option This adds the eap_reauth_period to be used for modifying the RADIUS server reauthentication authentication period, a parameter that gets passed directly to the hostapd configuration file. Signed-off-by: Mathieu Olivari Signed-off-by: Luis R. Rodriguez SVN-Revision: 38334 --- diff --git a/package/network/services/hostapd/files/hostapd.sh b/package/network/services/hostapd/files/hostapd.sh index e25e870aa2..0f1a619a55 100644 --- a/package/network/services/hostapd/files/hostapd.sh +++ b/package/network/services/hostapd/files/hostapd.sh @@ -108,6 +108,8 @@ hostapd_set_bss_options() { [ -n "$acct_port" ] && append "$var" "acct_server_port=$acct_port" "$N" config_get acct_secret "$vif" acct_secret [ -n "$acct_secret" ] && append "$var" "acct_server_shared_secret=$acct_secret" "$N" + config_get eap_reauth_period "$vif" eap_reauth_period + [ -n "$eap_reauth_period" ] && append "$var" "eap_reauth_period=$eap_reauth_period" "$N" config_get dae_client "$vif" dae_client config_get dae_secret "$vif" dae_secret [ -n "$dae_client" -a -n "$dae_secret" ] && {