|
@@ -909,12 +909,13 @@ static int wpas_ctrl_nfc_get_handover_req(struct wpa_supplicant *wpa_s,
|
|
|
|
|
|
|
|
|
static int wpas_ctrl_nfc_get_handover_sel_wps(struct wpa_supplicant *wpa_s,
|
|
|
- char *reply, size_t max_len)
|
|
|
+ char *reply, size_t max_len,
|
|
|
+ int ndef, int cr)
|
|
|
{
|
|
|
struct wpabuf *buf;
|
|
|
int res;
|
|
|
|
|
|
- buf = wpas_wps_nfc_handover_sel(wpa_s);
|
|
|
+ buf = wpas_wps_nfc_handover_sel(wpa_s, ndef, cr);
|
|
|
if (buf == NULL)
|
|
|
return -1;
|
|
|
|
|
@@ -934,18 +935,24 @@ static int wpas_ctrl_nfc_get_handover_sel(struct wpa_supplicant *wpa_s,
|
|
|
size_t max_len)
|
|
|
{
|
|
|
char *pos;
|
|
|
+ int ndef;
|
|
|
|
|
|
pos = os_strchr(cmd, ' ');
|
|
|
if (pos == NULL)
|
|
|
return -1;
|
|
|
*pos++ = '\0';
|
|
|
|
|
|
- if (os_strcmp(cmd, "NDEF") != 0)
|
|
|
+ if (os_strcmp(cmd, "WPS") == 0)
|
|
|
+ ndef = 0;
|
|
|
+ else if (os_strcmp(cmd, "NDEF") == 0)
|
|
|
+ ndef = 1;
|
|
|
+ else
|
|
|
return -1;
|
|
|
|
|
|
- if (os_strcmp(pos, "WPS") == 0) {
|
|
|
- return wpas_ctrl_nfc_get_handover_sel_wps(wpa_s, reply,
|
|
|
- max_len);
|
|
|
+ if (os_strcmp(pos, "WPS") == 0 || os_strcmp(pos, "WPS-CR") == 0) {
|
|
|
+ return wpas_ctrl_nfc_get_handover_sel_wps(
|
|
|
+ wpa_s, reply, max_len, ndef,
|
|
|
+ os_strcmp(pos, "WPS-CR") == 0);
|
|
|
}
|
|
|
|
|
|
return -1;
|