diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-04-20 03:56:38 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-04-20 03:56:38 +0000 |
commit | b9eb0936728d8d6703207c476c1936e2db02ff8a (patch) | |
tree | 43b7314b25c91476953c3827c677bb3f9a669c71 /sys/dev | |
parent | eb243fa8e189ad35b9278da28abe96ec99325e88 (diff) |
Correct the value for WI_RID_SYMBOL_PREAMBLE and add
WI_RID_P2_SHORT_PREAMBLE and WI_RID_P2_EXCLUDE_LONG_PREAMBLE.
Unforturnately, the Prism2 preamble RIDs conflict with the Lucent
WEP RIDs (and they don't seem to behave as I would expect anyway).
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/if_wi_ieee.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/ic/if_wi_ieee.h b/sys/dev/ic/if_wi_ieee.h index 4c8ba575b8d..7bd29b3c3e3 100644 --- a/sys/dev/ic/if_wi_ieee.h +++ b/sys/dev/ic/if_wi_ieee.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi_ieee.h,v 1.6 2002/04/06 23:48:38 millert Exp $ */ +/* $OpenBSD: if_wi_ieee.h,v 1.7 2002/04/20 03:56:37 millert Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -226,8 +226,10 @@ struct wi_counters { #define WI_RID_WEP_MAPTABLE 0xFC29 #define WI_RID_CNFAUTHMODE 0xFC2A #define WI_RID_SYMBOL_KEYLENGTH 0xFC2B -#define WI_RID_SYMBOL_PREAMBLE 0xFC2C /* Enable/disable short preamble */ #define WI_RID_ROAMING_MODE 0xFC2D /* Roaming mode (1:firm,3:disable) */ +#define WI_RID_SYMBOL_PREAMBLE 0xFC8C /* Enable/disable short preamble */ +#define WI_RID_P2_SHORT_PREAMBLE 0xFCB0 /* Short preamble support */ +#define WI_RID_P2_EXCLUDE_LONG_PREAMBLE 0xFCB1 /* Don't send long preamble */ #define WI_RID_BASIC_RATE 0xFCB3 #define WI_RID_SUPPORT_RATE 0xFCB4 #define WI_RID_SYMBOL_DIVERSITY 0xFC87 /* Symbol antenna diversity */ |