huangcm
2024-12-18 9d29be7f7249789d6ffd0440067187a9f040c2cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
 * 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 */