Searched refs:fst_iface (Results 1 - 12 of 12) sorted by relevance

/freebsd-12-stable/contrib/wpa/src/fst/
H A Dfst_iface.h18 struct fst_iface { struct
28 struct fst_iface * fst_iface_create(struct fst_group *g, const char *ifname,
32 void fst_iface_delete(struct fst_iface *i);
34 static inline struct fst_group * fst_iface_get_group(struct fst_iface *i)
39 static inline const char * fst_iface_get_name(struct fst_iface *i)
44 static inline const u8 * fst_iface_get_addr(struct fst_iface *i)
49 static inline const char * fst_iface_get_group_id(struct fst_iface *i)
54 static inline u8 fst_iface_get_priority(struct fst_iface *i)
59 static inline u32 fst_iface_get_llt(struct fst_iface *i)
64 static inline const struct wpabuf * fst_iface_get_mbie(struct fst_iface *
[all...]
H A Dfst.h41 struct fst_iface;
182 int (*on_iface_added)(struct fst_iface *i);
187 void (*on_iface_removed)(struct fst_iface *i);
207 void (*on_event)(enum fst_event_type event_type, struct fst_iface *i,
233 struct fst_iface * fst_attach(const char *ifname,
242 void fst_detach(struct fst_iface *iface);
251 void fst_rx_action(struct fst_iface *iface, const struct ieee80211_mgmt *mgmt,
259 void fst_notify_peer_connected(struct fst_iface *iface, const u8 *addr);
266 void fst_notify_peer_disconnected(struct fst_iface *iface, const u8 *addr);
279 Boolean fst_are_ifaces_aggregated(struct fst_iface *iface
[all...]
H A Dfst_group.h23 dl_list_for_each((i), &(g)->ifaces, struct fst_iface, group_lentry)
26 void fst_group_attach_iface(struct fst_group *g, struct fst_iface *i);
27 void fst_group_detach_iface(struct fst_group *g, struct fst_iface *i);
37 static inline struct fst_iface * fst_group_first_iface(struct fst_group *g)
39 return dl_list_first(&g->ifaces, struct fst_iface, group_lentry);
48 struct fst_iface * fst_group_get_iface_by_name(struct fst_group *g,
50 struct fst_iface *
51 fst_group_get_peer_other_connection(struct fst_iface *iface,
H A Dfst_iface.c15 struct fst_iface * fst_iface_create(struct fst_group *g, const char *ifname,
20 struct fst_iface *i;
44 void fst_iface_delete(struct fst_iface *i)
52 Boolean fst_iface_is_connected(struct fst_iface *iface, const u8 *addr,
66 void fst_iface_attach_mbie(struct fst_iface *i, struct wpabuf *mbie)
73 enum mb_band_id fst_iface_get_band_id(struct fst_iface *i)
H A Dfst_session.h14 struct fst_iface;
21 void fst_session_global_on_iface_detached(struct fst_iface *iface);
26 void fst_session_set_iface(struct fst_session *s, struct fst_iface *iface,
34 void fst_session_handle_action(struct fst_session *s, struct fst_iface *iface,
42 struct fst_iface * fst_session_get_iface(struct fst_session *s, Boolean is_old);
55 void fst_session_on_action_rx(struct fst_iface *iface,
H A Dfst.c22 static void fst_ctrl_iface_notify_peer_state_change(struct fst_iface *iface,
38 struct fst_iface * fst_attach(const char *ifname, const u8 *own_addr,
44 struct fst_iface *iface = NULL;
90 void fst_detach(struct fst_iface *iface)
166 void fst_rx_action(struct fst_iface *iface, const struct ieee80211_mgmt *mgmt,
178 void fst_notify_peer_connected(struct fst_iface *iface, const u8 *addr)
194 void fst_notify_peer_disconnected(struct fst_iface *iface, const u8 *addr)
210 Boolean fst_are_ifaces_aggregated(struct fst_iface *iface1,
211 struct fst_iface *iface2)
H A Dfst_group.c90 static unsigned fst_fill_iface_mb_ies(struct fst_iface *f, struct wpabuf *buf)
128 struct fst_iface *i)
131 struct fst_iface *f;
232 struct fst_iface * fst_group_get_iface_by_name(struct fst_group *g,
235 struct fst_iface *f;
279 static struct fst_iface *
280 fst_group_get_peer_other_connection_1(struct fst_iface *iface,
285 struct fst_iface *other_iface;
334 static struct fst_iface *
335 fst_group_get_peer_other_connection_2(struct fst_iface *ifac
[all...]
H A Dfst_session.c61 struct fst_iface *new_iface;
62 struct fst_iface *old_iface;
278 struct fst_iface *iface =
358 static void fst_session_handle_setup_request(struct fst_iface *iface,
364 struct fst_iface *new_iface = NULL;
501 struct fst_iface *iface,
605 struct fst_iface *iface,
640 struct fst_iface *iface,
704 struct fst_iface *iface,
787 void fst_session_set_iface(struct fst_session *s, struct fst_iface *ifac
[all...]
H A Dfst_ctrl_iface.c81 static void fst_ctrl_iface_notify(struct fst_iface *f, u32 session_id,
174 struct fst_iface *new_iface, *old_iface;
512 struct fst_iface *f;
563 struct fst_iface *iface = NULL;
599 struct fst_iface *f;
660 static int print_band(unsigned num, struct fst_iface *iface, const u8 *addr,
694 static void fst_ctrl_iface_on_iface_state_changed(struct fst_iface *i,
711 static int fst_ctrl_iface_on_iface_added(struct fst_iface *i)
718 static void fst_ctrl_iface_on_iface_removed(struct fst_iface *i)
725 struct fst_iface *
[all...]
/freebsd-12-stable/contrib/wpa/src/ap/
H A Dhostapd.h444 struct fst_iface *fst;
/freebsd-12-stable/contrib/wpa/wpa_supplicant/
H A Dwpa_supplicant_i.h1131 struct fst_iface *fst;
H A DAndroid.mk380 OBJS += src/fst/fst_iface.c

Completed in 184 milliseconds