CHENGQI YANG / SmartLab_MuRata
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers SecurityMode.h Source File

SecurityMode.h

00001 #ifndef SmartLab_MuRata_Type_SecurityMode
00002 #define SmartLab_MuRata_Type_SecurityMode
00003 
00004 namespace SmartLabMuRata
00005 {
00006 enum SecurityMode {
00007     WIFI_SECURITY_OPEN = 0x00,
00008     WEP = 0x01,
00009     WIFI_SECURITY_WPA_TKIP_PSK = 0x02,
00010     WIFI_SECURITY_WPA2_AES_PSK = 0x04,
00011     WIFI_SECURITY_WPA2_MIXED_PSK = 0x06,
00012     
00013     /**
00014     * not avaliable for SOFT AP
00015     */
00016     WIFI_SECURITY_WPA_AES_PSK = 0x07,
00017     
00018     NOT_SUPPORTED = 0xFF,
00019 };
00020 }
00021 
00022 #endif