xref: /freebsd/contrib/wpa/src/ap/interference.h (revision 71e72c9e91c4b8007a4292e09669e8b549c29e97)
1 /*
2  * Management of interference due to incumbent signals in 6 GHz band
3  * Copyright (c) Qualcomm Technologies, Inc. and/or its subsidiaries.
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8 #ifndef INTERFERENCE_H
9 #define INTERFERENCE_H
10 
11 struct hostapd_iface;
12 
13 int hostapd_incumbt_sig_intf_detected(struct hostapd_iface *iface, int freq,
14 				      int chan_width,
15 				      int cf1, int cf2,
16 				      u32 chan_bw_interference_bitmap);
17 
18 #endif /* INTERFERENCE_H */
19