[PATCH 1/2] ctrl: Do not wait for monitor to attach if no control interface
Ilan Peer
ilan.peer at intel.com
Sun Dec 27 06:25:06 PST 2015
In case that an interface has started without a control interface
initialized, skip waiting for monitor to attach.
Signed-off-by: Ilan Peer <ilan.peer at intel.com>
---
wpa_supplicant/ctrl_iface_unix.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/wpa_supplicant/ctrl_iface_unix.c b/wpa_supplicant/ctrl_iface_unix.c
index 2c71b2d..7b36751 100644
--- a/wpa_supplicant/ctrl_iface_unix.c
+++ b/wpa_supplicant/ctrl_iface_unix.c
@@ -1058,6 +1058,9 @@ void wpa_supplicant_ctrl_iface_wait(struct ctrl_iface_priv *priv)
struct sockaddr_un from;
socklen_t fromlen = sizeof(from);
+ if (priv->sock == -1)
+ return;
+
for (;;) {
wpa_printf(MSG_DEBUG, "CTRL_IFACE - %s - wait for monitor to "
"attach", priv->wpa_s->ifname);
--
1.9.1
More information about the Hostap
mailing list