Home | History | Annotate | Download | only in wpa_supplicant
      1 /*
      2  * WPA Supplicant - Basic mesh mode routines
      3  * Copyright (c) 2013-2014, cozybit, Inc.  All rights reserved.
      4  *
      5  * This software may be distributed under the terms of the BSD license.
      6  * See README for more details.
      7  */
      8 
      9 #ifndef MESH_H
     10 #define MESH_H
     11 
     12 int wpa_supplicant_join_mesh(struct wpa_supplicant *wpa_s,
     13 			     struct wpa_ssid *ssid);
     14 int wpa_supplicant_leave_mesh(struct wpa_supplicant *wpa_s);
     15 void wpa_supplicant_mesh_iface_deinit(struct wpa_supplicant *wpa_s,
     16 				      struct hostapd_iface *ifmsh);
     17 int wpas_mesh_scan_result_text(const u8 *ies, size_t ies_len, char *buf,
     18 			       char *end);
     19 int wpas_mesh_add_interface(struct wpa_supplicant *wpa_s, char *ifname,
     20 			    size_t len);
     21 
     22 #ifdef CONFIG_MESH
     23 
     24 void wpa_mesh_notify_peer(struct wpa_supplicant *wpa_s, const u8 *addr,
     25 			  const u8 *ies, size_t ie_len);
     26 void wpa_supplicant_mesh_add_scan_ie(struct wpa_supplicant *wpa_s,
     27 				     struct wpabuf **extra_ie);
     28 
     29 #else /* CONFIG_MESH */
     30 
     31 static inline void wpa_mesh_notify_peer(struct wpa_supplicant *wpa_s,
     32 					const u8 *addr,
     33 					const u8 *ies, size_t ie_len)
     34 {
     35 }
     36 
     37 static inline void wpa_supplicant_mesh_add_scan_ie(struct wpa_supplicant *wpa_s,
     38 						   struct wpabuf **extra_ie)
     39 {
     40 }
     41 
     42 #endif /* CONFIG_MESH */
     43 
     44 #endif /* MESH_H */
     45