我想通过在结构...
constructor(props){
super(props);
this.state = {counter: 0};
this.handleClick.bind(this) // <----- here
}
...
中使用API(start_ap)
在内核中启动AP,但是我只能创建没有密码的AP。
我该怎么做才能创建具有WPA-PSK模式的AP?
答案 0 :(得分:0)
您应在 struct cfg80211_ap_settings 中设置 struct cfg80211_crypto_settings 。
您可以在 nl80211.c 中看到它的示例:函数 nl80211_start_ap 。
它会调用 nl80211_crypto_settings 来设置此加密结构。