Backport of continous transmit function from madwifi-dfs.
[madwifi/.git] / net80211 / ieee80211_var.h
index d1109ecfbf368778ca2a140d5234e20c6cd34756..0c5af90ec751f54583ddb30c195dd5bfe4dbaf38 100644 (file)
@@ -403,6 +403,14 @@ struct ieee80211com {
        /* U-APSD support */
        void (*ic_uapsd_flush)(struct ieee80211_node *);
 
+       /* continuous transmission support */
+       void (*ic_set_txcont)(struct ieee80211com *, int);
+       int (*ic_get_txcont)(struct ieee80211com *);
+       void (*ic_set_txcont_power)(struct ieee80211com *, u_int);
+       int (*ic_get_txcont_power)(struct ieee80211com *);
+       void (*ic_set_txcont_rate)(struct ieee80211com *, u_int);
+       u_int (*ic_get_txcont_rate)(struct ieee80211com *);
+
        /* Set coverage class */
        void (*ic_set_coverageclass)(struct ieee80211com *);
 
@@ -419,7 +427,6 @@ struct ieee80211com {
 #endif /* #ifdef ATH_REVERSE_ENGINEERING */
 };
 
-
 #define MAX_PROC_IEEE80211_SIZE 16383
 #define PROC_IEEE80211_PERM 0644