diff mbox

[v3,13/26] hostapd: setup real ctrl_interface for UDP

Message ID 1455711269-12929-14-git-send-email-janusz.dziedzic@tieto.com
State Superseded
Headers show

Commit Message

Janusz.Dziedzic@tieto.com Feb. 17, 2016, 12:14 p.m. UTC
Setup real ctrl_interface for UDP. This is
in format:
udp:<port_no>
This is required to get iface <-> udp_port
mapping.

Signed-off-by: Janusz Dziedzic <janusz.dziedzic@tieto.com>
---
 hostapd/ctrl_iface.c | 4 ++++
 1 file changed, 4 insertions(+)
diff mbox

Patch

diff --git a/hostapd/ctrl_iface.c b/hostapd/ctrl_iface.c
index 951854e..5ba01c3 100644
--- a/hostapd/ctrl_iface.c
+++ b/hostapd/ctrl_iface.c
@@ -2367,6 +2367,7 @@  int hostapd_ctrl_iface_init(struct hostapd_data *hapd)
 {
 	int port = HOSTAPD_CTRL_IFACE_PORT;
 	char p[32]={0};
+	char port_str[40];
 	char *pos;
 	struct addrinfo hints = { 0 }, *res, *saveres;
 	int n;
@@ -2430,6 +2431,9 @@  try_again:
 
 	freeaddrinfo(saveres);
 
+	os_snprintf(port_str, sizeof(port_str), "udp:%d", port);
+	os_free(hapd->conf->ctrl_interface);
+	hapd->conf->ctrl_interface = os_strdup(port_str);
 	wpa_printf(MSG_DEBUG, "ctrl_iface_init UDP port: %d", port);
 
 	if (eloop_register_read_sock(hapd->ctrl_sock, hostapd_ctrl_iface_receive, hapd, NULL) < 0) {