|
@@ -1321,6 +1321,52 @@ static char * wpa_config_write_wep_key3(const struct parse_data *data,
|
|
|
|
|
|
#ifdef CONFIG_P2P
|
|
#ifdef CONFIG_P2P
|
|
|
|
|
|
|
|
+static int wpa_config_parse_go_p2p_dev_addr(const struct parse_data *data,
|
|
|
|
+ struct wpa_ssid *ssid, int line,
|
|
|
|
+ const char *value)
|
|
|
|
+{
|
|
|
|
+ if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
|
|
|
|
+ os_strcmp(value, "any") == 0) {
|
|
|
|
+ os_memset(ssid->go_p2p_dev_addr, 0, ETH_ALEN);
|
|
|
|
+ wpa_printf(MSG_MSGDUMP, "GO P2P Device Address any");
|
|
|
|
+ return 0;
|
|
|
|
+ }
|
|
|
|
+ if (hwaddr_aton(value, ssid->go_p2p_dev_addr)) {
|
|
|
|
+ wpa_printf(MSG_ERROR, "Line %d: Invalid GO P2P Device Address '%s'.",
|
|
|
|
+ line, value);
|
|
|
|
+ return -1;
|
|
|
|
+ }
|
|
|
|
+ ssid->bssid_set = 1;
|
|
|
|
+ wpa_printf(MSG_MSGDUMP, "GO P2P Device Address " MACSTR,
|
|
|
|
+ MAC2STR(ssid->go_p2p_dev_addr));
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+#ifndef NO_CONFIG_WRITE
|
|
|
|
+static char * wpa_config_write_go_p2p_dev_addr(const struct parse_data *data,
|
|
|
|
+ struct wpa_ssid *ssid)
|
|
|
|
+{
|
|
|
|
+ char *value;
|
|
|
|
+ int res;
|
|
|
|
+
|
|
|
|
+ if (is_zero_ether_addr(ssid->go_p2p_dev_addr))
|
|
|
|
+ return NULL;
|
|
|
|
+
|
|
|
|
+ value = os_malloc(20);
|
|
|
|
+ if (value == NULL)
|
|
|
|
+ return NULL;
|
|
|
|
+ res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->go_p2p_dev_addr));
|
|
|
|
+ if (res < 0 || res >= 20) {
|
|
|
|
+ os_free(value);
|
|
|
|
+ return NULL;
|
|
|
|
+ }
|
|
|
|
+ value[20 - 1] = '\0';
|
|
|
|
+ return value;
|
|
|
|
+}
|
|
|
|
+#endif /* NO_CONFIG_WRITE */
|
|
|
|
+
|
|
|
|
+
|
|
static int wpa_config_parse_p2p_client_list(const struct parse_data *data,
|
|
static int wpa_config_parse_p2p_client_list(const struct parse_data *data,
|
|
struct wpa_ssid *ssid, int line,
|
|
struct wpa_ssid *ssid, int line,
|
|
const char *value)
|
|
const char *value)
|
|
@@ -1632,6 +1678,7 @@ static const struct parse_data ssid_fields[] = {
|
|
{ STR(bgscan) },
|
|
{ STR(bgscan) },
|
|
{ INT_RANGE(ignore_broadcast_ssid, 0, 2) },
|
|
{ INT_RANGE(ignore_broadcast_ssid, 0, 2) },
|
|
#ifdef CONFIG_P2P
|
|
#ifdef CONFIG_P2P
|
|
|
|
+ { FUNC(go_p2p_dev_addr) },
|
|
{ FUNC(p2p_client_list) },
|
|
{ FUNC(p2p_client_list) },
|
|
{ FUNC(psk_list) },
|
|
{ FUNC(psk_list) },
|
|
#endif /* CONFIG_P2P */
|
|
#endif /* CONFIG_P2P */
|