mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
Correct the definitions for NDIS_80211_NET_INFRA_IBSS and
NDIS_80211_NET_INFRA_BSS: I accidentally reversed them during transcription from the Microsoft headers. Note that the driver will default to BSS mode, and you need to specify 'mediaopt adhoc' to get it into IBSS mode.
This commit is contained in:
parent
8d181eb589
commit
ffc0badf60
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=123778
@ -381,8 +381,8 @@ struct ndis_80211_wep {
|
||||
|
||||
typedef struct ndis_80211_wep ndis_80211_wep;
|
||||
|
||||
#define NDIS_80211_NET_INFRA_BSS 0x00000000
|
||||
#define NDIS_80211_NET_INFRA_IBSS 0x00000001
|
||||
#define NDIS_80211_NET_INFRA_IBSS 0x00000000
|
||||
#define NDIS_80211_NET_INFRA_BSS 0x00000001
|
||||
#define NDIS_80211_NET_INFRA_AUTO 0x00000002
|
||||
|
||||
#define NDIS_80211_AUTHMODE_OPEN 0x00000000
|
||||
|
Loading…
Reference in New Issue
Block a user