rtw_ioctl_set.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2007 - 2011 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 __RTW_IOCTL_SET_H_
  21. #define __RTW_IOCTL_SET_H_
  22. typedef u8 NDIS_802_11_PMKID_VALUE[16];
  23. typedef struct _BSSIDInfo {
  24. NDIS_802_11_MAC_ADDRESS BSSID;
  25. NDIS_802_11_PMKID_VALUE PMKID;
  26. } BSSIDInfo, *PBSSIDInfo;
  27. #ifdef PLATFORM_OS_XP
  28. typedef struct _NDIS_802_11_PMKID {
  29. u32 Length;
  30. u32 BSSIDInfoCount;
  31. BSSIDInfo BSSIDInfo[1];
  32. } NDIS_802_11_PMKID, *PNDIS_802_11_PMKID;
  33. #endif
  34. #ifdef PLATFORM_WINDOWS
  35. u8 rtw_set_802_11_reload_defaults(_adapter * padapter, NDIS_802_11_RELOAD_DEFAULTS reloadDefaults);
  36. u8 rtw_set_802_11_test(_adapter * padapter, NDIS_802_11_TEST * test);
  37. u8 rtw_set_802_11_pmkid(_adapter *pdapter, NDIS_802_11_PMKID *pmkid);
  38. u8 rtw_pnp_set_power_sleep(_adapter* padapter);
  39. u8 rtw_pnp_set_power_wakeup(_adapter* padapter);
  40. void rtw_pnp_resume_wk(void *context);
  41. void rtw_pnp_sleep_wk(void * context);
  42. #endif
  43. u8 rtw_set_802_11_add_key(_adapter * padapter, NDIS_802_11_KEY * key);
  44. u8 rtw_set_802_11_authentication_mode(_adapter *pdapter, NDIS_802_11_AUTHENTICATION_MODE authmode);
  45. u8 rtw_set_802_11_bssid(_adapter* padapter, u8 *bssid);
  46. u8 rtw_set_802_11_add_wep(_adapter * padapter, NDIS_802_11_WEP * wep);
  47. u8 rtw_set_802_11_disassociate(_adapter * padapter);
  48. u8 rtw_set_802_11_bssid_list_scan(_adapter* padapter, NDIS_802_11_SSID *pssid, int ssid_max_num);
  49. u8 rtw_set_802_11_infrastructure_mode(_adapter * padapter, NDIS_802_11_NETWORK_INFRASTRUCTURE networktype);
  50. u8 rtw_set_802_11_remove_wep(_adapter * padapter, u32 keyindex);
  51. u8 rtw_set_802_11_ssid(_adapter * padapter, NDIS_802_11_SSID * ssid);
  52. u8 rtw_set_802_11_remove_key(_adapter * padapter, NDIS_802_11_REMOVE_KEY * key);
  53. u8 rtw_validate_ssid(NDIS_802_11_SSID *ssid);
  54. u16 rtw_get_cur_max_rate(_adapter *adapter);
  55. int rtw_set_scan_mode(_adapter *adapter, RT_SCAN_TYPE scan_mode);
  56. int rtw_set_channel_plan(_adapter *adapter, u8 channel_plan);
  57. int rtw_set_country(_adapter *adapter, const char *country_code);
  58. #endif