003 File Manager
Current Path:
/usr/src/contrib/wpa/src/fst
usr
/
src
/
contrib
/
wpa
/
src
/
fst
/
📁
..
📄
Makefile
(95 B)
📄
fst.c
(5.07 KB)
📄
fst.h
(8.35 KB)
📄
fst_ctrl_aux.c
(1.94 KB)
📄
fst_ctrl_aux.h
(2.52 KB)
📄
fst_ctrl_defs.h
(4.7 KB)
📄
fst_ctrl_iface.c
(22.93 KB)
📄
fst_ctrl_iface.h
(1.17 KB)
📄
fst_defs.h
(1.82 KB)
📄
fst_group.c
(13.29 KB)
📄
fst_group.h
(1.9 KB)
📄
fst_iface.c
(1.71 KB)
📄
fst_iface.h
(3.3 KB)
📄
fst_internal.h
(1.34 KB)
📄
fst_session.c
(40 KB)
📄
fst_session.h
(2.88 KB)
Editing: fst_internal.h
/* * FST module - auxiliary definitions * Copyright (c) 2014, Qualcomm Atheros, Inc. * * This software may be distributed under the terms of the BSD license. * See README for more details. */ #ifndef FST_INTERNAL_H #define FST_INTERNAL_H #include "utils/includes.h" #include "utils/common.h" #include "common/defs.h" #include "common/ieee802_11_defs.h" #include "fst/fst_iface.h" #include "fst/fst_group.h" #include "fst/fst_session.h" #define fst_printf(level, format, ...) \ wpa_printf((level), "FST: " format, ##__VA_ARGS__) #define fst_printf_group(group, level, format, ...) \ wpa_printf((level), "FST: %s: " format, \ fst_group_get_id(group), ##__VA_ARGS__) #define fst_printf_iface(iface, level, format, ...) \ fst_printf_group(fst_iface_get_group(iface), (level), "%s: " format, \ fst_iface_get_name(iface), ##__VA_ARGS__) enum mb_band_id fst_hw_mode_to_band(enum hostapd_hw_mode mode); struct fst_ctrl_handle { struct fst_ctrl ctrl; struct dl_list global_ctrls_lentry; }; extern struct dl_list fst_global_ctrls_list; #define foreach_fst_ctrl_call(clb, ...) \ do { \ struct fst_ctrl_handle *__fst_ctrl_h; \ dl_list_for_each(__fst_ctrl_h, &fst_global_ctrls_list, \ struct fst_ctrl_handle, global_ctrls_lentry) \ if (__fst_ctrl_h->ctrl.clb) \ __fst_ctrl_h->ctrl.clb(__VA_ARGS__);\ } while (0) #endif /* FST_INTERNAL_H */
Upload File
Create Folder