📦 NikithShetty / Virtual-wifi

📄 WLAN_SECURITY_ATTRIBUTES.cs · 15 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15using System.Runtime.InteropServices;

namespace VirtualRouter.Wlan.WinAPI
{
    //http://msdn.microsoft.com/en-us/library/ms707400%28VS.85%29.aspx
    [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
    public struct WLAN_SECURITY_ATTRIBUTES
    {
        bool bSecurityEnabled;
        bool bOneXEnabled;
        DOT11_AUTH_ALGORITHM dot11AuthAlgorithm;
        DOT11_CIPHER_ALGORITHM dot11CipherAlgorithm;
    }
}