diff options
| -rw-r--r-- | src/ap/ap_config.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ap/ap_config.c b/src/ap/ap_config.c index e77716bd..0c299e07 100644 --- a/src/ap/ap_config.c +++ b/src/ap/ap_config.c @@ -160,7 +160,9 @@ struct hostapd_config * hostapd_config_defaults(void) conf->tx_queue[2] = txq_be; conf->tx_queue[3] = txq_bk; - conf->ht_capab = HT_CAP_INFO_SMPS_DISABLED; + /* TEMP: hard-coded HT capabilities. We should get these from wiphy */ + conf->ht_capab = HT_CAP_INFO_SHORT_GI20MHZ | HT_CAP_INFO_GREEN_FIELD | + HT_CAP_INFO_RX_STBC_1 | HT_CAP_INFO_SMPS_DISABLED; return conf; } |
