From: Sven Eckelmann Date: Mon, 17 Dec 2012 15:45:26 +0000 (+0200) Subject: Fix initialization of ap_table_{max_size,expiration_time} X-Git-Tag: hostap_2_0~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f1b44874c2d91ddfbbc2cf1ede45a742c1e9adbe;p=thirdparty%2Fhostap.git Fix initialization of ap_table_{max_size,expiration_time} The config says that the default for ap_table_max_size is 255 and the default for ap_table_expiration_time is 60. But the code doesn't reflect the default values mentioned in the sample config file. These variables completely disable the code for Overlapping Legacy BSS Condition by default when they are not correctly initialized. WFA certification requires this feature and therefore an AP would have failed the certification process unless they were initialized manually using the configuration file. Signed-hostap: Sven Eckelmann Signed-hostap: Simon Wunderlich --- diff --git a/src/ap/ap_config.c b/src/ap/ap_config.c index 3c699f71e..25d26e5e7 100644 --- a/src/ap/ap_config.c +++ b/src/ap/ap_config.c @@ -158,6 +158,9 @@ struct hostapd_config * hostapd_config_defaults(void) conf->ht_capab = HT_CAP_INFO_SMPS_DISABLED; + conf->ap_table_max_size = 255; + conf->ap_table_expiration_time = 60; + return conf; }