diff options
| author | 2008-08-29 12:14:53 +0000 | |
|---|---|---|
| committer | 2008-08-29 12:14:53 +0000 | |
| commit | e63afc5739cbc4e3446dea7e98d9b1ba81d26dc7 (patch) | |
| tree | 9ae8819d00d80afdc295ce4ad9f813da69142aab /sys/net80211/ieee80211_node.c | |
| parent | remove BIND's delegation-only from default config files. (diff) | |
| download | wireguard-openbsd-e63afc5739cbc4e3446dea7e98d9b1ba81d26dc7.tar.xz wireguard-openbsd-e63afc5739cbc4e3446dea7e98d9b1ba81d26dc7.zip | |
move code to support Frequency-Hopping spread spectrum (FHSS) PHYs
to the Attic. nothing uses it in the tree and it is very unlikely
that something will use it one day.
the only driver supporting FHSS PHYs in the tree is ray(4) and it
does not use net80211.
Diffstat (limited to 'sys/net80211/ieee80211_node.c')
| -rw-r--r-- | sys/net80211/ieee80211_node.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/net80211/ieee80211_node.c b/sys/net80211/ieee80211_node.c index 7252e17e4c2..6c0741c5b4c 100644 --- a/sys/net80211/ieee80211_node.c +++ b/sys/net80211/ieee80211_node.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ieee80211_node.c,v 1.44 2008/08/27 09:05:04 damien Exp $ */ +/* $OpenBSD: ieee80211_node.c,v 1.45 2008/08/29 12:14:53 damien Exp $ */ /* $NetBSD: ieee80211_node.c,v 1.14 2004/05/09 09:18:47 dyoung Exp $ */ /*- @@ -366,10 +366,6 @@ ieee80211_create_ibss(struct ieee80211com* ic, struct ieee80211_channel *chan) /* schedule a GTK/IGTK rekeying after 3600s */ timeout_add(&ic->ic_rsn_timeout, 3600 * hz); } - if (ic->ic_phytype == IEEE80211_T_FH) { - ni->ni_fhdwell = 200; /* XXX */ - ni->ni_fhindex = 1; - } ieee80211_new_state(ic, IEEE80211_S_RUN, -1); } #endif /* IEEE80211_STA_ONLY */ |
