diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2016-02-08 01:00:48 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2016-02-08 01:00:48 +0000 |
commit | c32293b2947d8d6487936cf76a924f401ce9517b (patch) | |
tree | bf293ea479c734a075a09b5ee1b77f5dd7b2d3b3 /sys/net80211/ieee80211_node.h | |
parent | 51f5a28d96c8f257f540c20eb47506c1695e50e6 (diff) |
Stop requiring a BlockAck session timeout (again), and just use it if the AP
is asking for it. This timeout should not be required anymore now that krw@'s
hangs are fixed by working around APs which make sequence numbers jump about.
Diffstat (limited to 'sys/net80211/ieee80211_node.h')
-rw-r--r-- | sys/net80211/ieee80211_node.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/net80211/ieee80211_node.h b/sys/net80211/ieee80211_node.h index ee2ae728cfb..77d5bafe1a5 100644 --- a/sys/net80211/ieee80211_node.h +++ b/sys/net80211/ieee80211_node.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_node.h,v 1.57 2016/02/08 00:54:57 stsp Exp $ */ +/* $OpenBSD: ieee80211_node.h,v 1.58 2016/02/08 01:00:47 stsp Exp $ */ /* $NetBSD: ieee80211_node.h,v 1.9 2004/04/30 22:57:32 dyoung Exp $ */ /*- @@ -112,9 +112,6 @@ struct ieee80211_tx_ba { struct ieee80211_node *ba_ni; /* backpointer for callbacks */ struct timeout ba_to; int ba_timeout_val; -#define IEEE80211_BA_MIN_TIMEOUT (1000 * 1000) /* 1 sec */ -#define IEEE80211_BA_MAX_TIMEOUT (5000 * 1000) /* 5 sec */ - int ba_state; #define IEEE80211_BA_INIT 0 #define IEEE80211_BA_REQUESTED 1 |