Forráskód Böngészése

qcacmn: Add Drop beacon on Channel mismatch INI

Add ini drop_bcn_on_chan_mismatch, default: true.

The ini is used to decide drop the beacon or not
if channel received in metadata doesn't match
the one in beacon.

Change-Id: I6a25d472ae41f4a7f0bdb7a57002975938b2dc33
CRs-Fixed: 2312994
Liangwei Dong 6 éve
szülő
commit
44a7ab73f9
1 módosított fájl, 22 hozzáadás és 0 törlés
  1. 22 0
      umac/scan/dispatcher/inc/wlan_scan_cfg.h

+ 22 - 0
umac/scan/dispatcher/inc/wlan_scan_cfg.h

@@ -24,6 +24,27 @@
 
 #include "cfg_define.h"
 
+/*
+ * <ini>
+ * drop_bcn_on_chan_mismatch - drop the beacon for chan mismatch
+ * @Min: 0
+ * @Max: 1
+ * @Default: 1
+ *
+ * This ini is used to decide drop the beacon or not if channel received
+ * in metadata doesn't match the one in beacon.
+ *
+ * Related: None
+ *
+ * Usage: External
+ *
+ * </ini>
+ */
+#define CFG_DROP_BCN_ON_CHANNEL_MISMATCH CFG_INI_BOOL(\
+		"drop_bcn_on_chan_mismatch",\
+		true,\
+		"drop bcn on channel mismatch")
+
 /*
  * <ini>
  * gActiveMaxChannelTime - Set max channel time for active scan
@@ -186,6 +207,7 @@
 			"Set priority for connection with bssid_hint")
 
 #define CFG_SCAN_ALL \
+	CFG(CFG_DROP_BCN_ON_CHANNEL_MISMATCH) \
 	CFG(CFG_ACTIVE_MAX_CHANNEL_TIME) \
 	CFG(CFG_ACTIVE_MAX_2G_CHANNEL_TIME) \
 	CFG(CFG_PASSIVE_MAX_CHANNEL_TIME) \