diff options
author | Damien Bergamini <damien@cvs.openbsd.org> | 2007-07-03 16:07:11 +0000 |
---|---|---|
committer | Damien Bergamini <damien@cvs.openbsd.org> | 2007-07-03 16:07:11 +0000 |
commit | 9a6448ac13ad925c080395f653a925821455bbc7 (patch) | |
tree | 37f7acd646e652cd45e9f43b4732dc861c190572 /sys/net80211 | |
parent | 7631563f2e950e4a04d1699639a06efb3cf3d5fb (diff) |
no TIM in probe reponses.
Diffstat (limited to 'sys/net80211')
-rw-r--r-- | sys/net80211/ieee80211_output.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/net80211/ieee80211_output.c b/sys/net80211/ieee80211_output.c index ce7c745176c..87ece3b2a83 100644 --- a/sys/net80211/ieee80211_output.c +++ b/sys/net80211/ieee80211_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_output.c,v 1.34 2007/07/03 16:03:48 damien Exp $ */ +/* $OpenBSD: ieee80211_output.c,v 1.35 2007/07/03 16:07:10 damien Exp $ */ /* $NetBSD: ieee80211_output.c,v 1.13 2004/05/31 11:02:55 dyoung Exp $ */ /*- @@ -872,14 +872,6 @@ ieee80211_get_probe_resp(struct ieee80211com *ic, struct ieee80211_node *ni) *frm++ = IEEE80211_ELEMID_IBSSPARMS; *frm++ = 2; *frm++ = 0; *frm++ = 0; /* TODO: ATIM window */ - } else { /* IEEE80211_M_HOSTAP */ - /* TODO: TIM */ - *frm++ = IEEE80211_ELEMID_TIM; - *frm++ = 4; /* length */ - *frm++ = 0; /* DTIM count */ - *frm++ = 1; /* DTIM period */ - *frm++ = 0; /* bitmap control */ - *frm++ = 0; /* Partial Virtual Bitmap (variable) */ } if (ic->ic_curmode == IEEE80211_MODE_11G) frm = ieee80211_add_erp(frm, ic); |