|
@@ -458,6 +458,16 @@ struct acx_beacon_filter_ie_table {
|
|
|
u8 pad[3];
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
|
+#define SYNCH_FAIL_DEFAULT_THRESHOLD 5 /* number of beacons */
|
|
|
+#define NO_BEACON_DEFAULT_TIMEOUT (100) /* TU */
|
|
|
+
|
|
|
+struct acx_conn_monit_params {
|
|
|
+ struct acx_header header;
|
|
|
+
|
|
|
+ u32 synch_fail_thold; /* number of beacons missed */
|
|
|
+ u32 bss_lose_timeout; /* number of TU's from synch fail */
|
|
|
+};
|
|
|
+
|
|
|
enum {
|
|
|
SG_ENABLE = 0,
|
|
|
SG_DISABLE,
|
|
@@ -1275,6 +1285,7 @@ int wl1251_acx_service_period_timeout(struct wl1251 *wl);
|
|
|
int wl1251_acx_rts_threshold(struct wl1251 *wl, u16 rts_threshold);
|
|
|
int wl1251_acx_beacon_filter_opt(struct wl1251 *wl);
|
|
|
int wl1251_acx_beacon_filter_table(struct wl1251 *wl);
|
|
|
+int wl1251_acx_conn_monit_params(struct wl1251 *wl);
|
|
|
int wl1251_acx_sg_enable(struct wl1251 *wl);
|
|
|
int wl1251_acx_sg_cfg(struct wl1251 *wl);
|
|
|
int wl1251_acx_cca_threshold(struct wl1251 *wl);
|