mesh: Add MESH_PEER_REMOVE command
[mech_eap.git] / wpa_supplicant / mesh_mpm.h
1 /*
2  * WPA Supplicant - Basic mesh peer management
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_MPM_H
10 #define MESH_MPM_H
11
12 /* notify MPM of new mesh peer to be inserted in MPM and driver */
13 void wpa_mesh_new_mesh_peer(struct wpa_supplicant *wpa_s, const u8 *addr,
14                             struct ieee802_11_elems *elems);
15 void mesh_mpm_deinit(struct wpa_supplicant *wpa_s, struct hostapd_iface *ifmsh);
16 void mesh_mpm_auth_peer(struct wpa_supplicant *wpa_s, const u8 *addr);
17 void mesh_mpm_free_sta(struct hostapd_data *hapd, struct sta_info *sta);
18 void wpa_mesh_set_plink_state(struct wpa_supplicant *wpa_s,
19                               struct sta_info *sta,
20                               enum mesh_plink_state state);
21 int mesh_mpm_close_peer(struct wpa_supplicant *wpa_s, const u8 *addr);
22
23 #ifdef CONFIG_MESH
24
25 void mesh_mpm_action_rx(struct wpa_supplicant *wpa_s,
26                         const struct ieee80211_mgmt *mgmt, size_t len);
27 void mesh_mpm_mgmt_rx(struct wpa_supplicant *wpa_s, struct rx_mgmt *rx_mgmt);
28
29 #else /* CONFIG_MESH */
30
31 static inline void mesh_mpm_action_rx(struct wpa_supplicant *wpa_s,
32                                       const struct ieee80211_mgmt *mgmt,
33                                       size_t len)
34 {
35 }
36
37 static inline void mesh_mpm_mgmt_rx(struct wpa_supplicant *wpa_s,
38                                     struct rx_mgmt *rx_mgmt)
39 {
40 }
41
42 #endif /* CONFIG_MESH */
43
44 #endif /* MESH_MPM_H */