1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2010 Realtek Corporation. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of version 2 of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17  *
18  *
19  ******************************************************************************/
20 #ifndef __IOCTL_SET_H
21 #define __IOCTL_SET_H
22 
23 #include "drv_types.h"
24 
25 typedef u8 NDIS_802_11_PMKID_VALUE[16];
26 
27 struct BSSIDInfo {
28 	unsigned char BSSID[6];
29 	NDIS_802_11_PMKID_VALUE PMKID;
30 };
31 
32 u8 r8712_set_802_11_authentication_mode(struct _adapter *pdapter,
33 			enum NDIS_802_11_AUTHENTICATION_MODE authmode);
34 
35 u8 r8712_set_802_11_bssid(struct _adapter *padapter, u8 *bssid);
36 
37 u8 r8712_set_802_11_add_wep(struct _adapter *padapter,
38 			    struct NDIS_802_11_WEP *wep);
39 
40 u8 r8712_set_802_11_disassociate(struct _adapter *padapter);
41 
42 u8 r8712_set_802_11_bssid_list_scan(struct _adapter *padapter);
43 
44 u8 r8712_set_802_11_infrastructure_mode(struct _adapter *padapter,
45 			enum NDIS_802_11_NETWORK_INFRASTRUCTURE networktype);
46 
47 void r8712_set_802_11_ssid(struct _adapter *padapter,
48 			   struct ndis_802_11_ssid *ssid);
49 
50 #endif
51 
52