Skip to content

Commit

Permalink
Revert "Replaced privacy strings with meaningful ones"
Browse files Browse the repository at this point in the history
We want to keep the windows headers the way they are, the string
will be substituted in our code higher up the stack

This reverts commit e54837a.
  • Loading branch information
Brian Tuttle committed Jan 24, 2012
1 parent e00613b commit 8fa8831
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions Wlan.cs
Expand Up @@ -44,9 +44,8 @@ public enum Dot11AuthAlgorithm : uint
IEEE80211_SharedKey = 2,
IHV_End = 0xffffffff,
IHV_Start = 0x80000000,
// RSNA -> WPA2
WPA2 = 6,
WPA2_PSK = 7,
RSNA = 6,
RSNA_PSK = 7,
WPA = 3,
WPA_None = 5,
WPA_PSK = 4
Expand All @@ -61,15 +60,12 @@ public enum Dot11BssType

public enum Dot11CipherAlgorithm : uint
{
// CCMP -> Enterprise
Enterprise = 4,
CCMP = 4,
IHV_End = 0xffffffff,
IHV_Start = 0x80000000,
// None -> Open
Open = 0,
None = 0,
RSN_UseGroup = 0x100,
// TKIP -> Personal
Personal = 2,
TKIP = 2,
WEP = 0x101,
WEP104 = 5,
WEP40 = 1,
Expand Down

0 comments on commit 8fa8831

Please sign in to comment.