Browse Source

hostapd: Update ctrl_interface for UDP to include the selected port

Set up the real ctrl_interface for UDP after having selected the port.
This is in format: udp:<port_no>. This is needed to get accurate
interface <-> udp_port mapping.

Signed-off-by: Janusz Dziedzic <janusz.dziedzic@tieto.com>
Janusz Dziedzic 9 years ago
parent
commit
180e5b96c3
1 changed files with 7 additions and 0 deletions
  1. 7 0
      hostapd/ctrl_iface.c

+ 7 - 0
hostapd/ctrl_iface.c

@@ -2444,6 +2444,7 @@ int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
 #ifdef CONFIG_CTRL_IFACE_UDP
 	int port = HOSTAPD_CTRL_IFACE_PORT;
 	char p[32] = { 0 };
+	char port_str[40], *tmp;
 	char *pos;
 	struct addrinfo hints = { 0 }, *res, *saveres;
 	int n;
@@ -2508,6 +2509,12 @@ try_again:
 
 	freeaddrinfo(saveres);
 
+	os_snprintf(port_str, sizeof(port_str), "udp:%d", port);
+	tmp = os_strdup(port_str);
+	if (tmp) {
+		os_free(hapd->conf->ctrl_interface);
+		hapd->conf->ctrl_interface = tmp;
+	}
 	wpa_printf(MSG_DEBUG, "ctrl_iface_init UDP port: %d", port);
 
 	if (eloop_register_read_sock(hapd->ctrl_sock,