MLD STA: Indicate MLO support in NL80211_CMD_CONNECT
Send NL80211_ATTR_MLO_SUPPORT flag in NL80211_CMD_CONNECT to indicate wpa_supplicant has support to handle MLO connection for SME-in-driver case. Signed-off-by: Veerendranath Jakkam <quic_vjakkam@quicinc.com>
This commit is contained in:
parent
c91852044d
commit
edfcb2f1a9
1 changed files with 4 additions and 0 deletions
|
@ -6673,6 +6673,10 @@ static int nl80211_connect_common(struct wpa_driver_nl80211_data *drv,
|
||||||
nla_put_flag(msg, NL80211_ATTR_EXTERNAL_AUTH_SUPPORT))
|
nla_put_flag(msg, NL80211_ATTR_EXTERNAL_AUTH_SUPPORT))
|
||||||
return -1;
|
return -1;
|
||||||
|
|
||||||
|
if (!(drv->capa.flags & WPA_DRIVER_FLAGS_SME) &&
|
||||||
|
nla_put_flag(msg, NL80211_ATTR_MLO_SUPPORT))
|
||||||
|
return -1;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue