summaryrefslogtreecommitdiff
path: root/wpa_supplicant/mesh.h
diff options
context:
space:
mode:
authorJason Abele <jason.abele@gmail.com>2014-09-01 00:23:32 -0400
committerJouni Malinen <j@w1.fi>2014-10-25 17:45:35 +0300
commitfbca4c893d3de77e012e16956f694dfc15be97c2 (patch)
tree1976063a6d8f54625568c42bd45cc0922de873b5 /wpa_supplicant/mesh.h
parentd73b3f2ea026617a6c6aaa2319a62ca6c5d3773f (diff)
downloadhostap-fbca4c893d3de77e012e16956f694dfc15be97c2.tar.gz
mesh: Implement mesh scanning
When mesh is configured in, include the wildcard mesh id so that mesh networks are returned. Signed-off-by: Javier Lopez <jlopex@gmail.com> Signed-off-by: Jason Abele <jason.abele@gmail.com>
Diffstat (limited to 'wpa_supplicant/mesh.h')
-rw-r--r--wpa_supplicant/mesh.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/wpa_supplicant/mesh.h b/wpa_supplicant/mesh.h
index 34a0ea2e9..44188a917 100644
--- a/wpa_supplicant/mesh.h
+++ b/wpa_supplicant/mesh.h
@@ -19,6 +19,8 @@ void wpa_supplicant_mesh_iface_deinit(struct wpa_supplicant *wpa_s,
void wpa_mesh_notify_peer(struct wpa_supplicant *wpa_s, const u8 *addr,
const u8 *ies, size_t ie_len);
+void wpa_supplicant_mesh_add_scan_ie(struct wpa_supplicant *wpa_s,
+ struct wpabuf **extra_ie);
#else /* CONFIG_MESH */
@@ -28,6 +30,11 @@ static inline void wpa_mesh_notify_peer(struct wpa_supplicant *wpa_s,
{
}
+static inline void wpa_supplicant_mesh_add_scan_ie(struct wpa_supplicant *wpa_s,
+ struct wpabuf **extra_ie)
+{
+}
+
#endif /* CONFIG_MESH */
#endif /* MESH_H */