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