rtw_ioctl_set.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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, struct rtw_ieee80211_channel *ch, int ch_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_connect(_adapter *padapter, u8 *bssid, NDIS_802_11_SSID *ssid);
  53. u8 rtw_set_802_11_remove_key(_adapter *padapter, NDIS_802_11_REMOVE_KEY *key);
  54. u8 rtw_validate_bssid(u8 *bssid);
  55. u8 rtw_validate_ssid(NDIS_802_11_SSID *ssid);
  56. u16 rtw_get_cur_max_rate(_adapter *adapter);
  57. int rtw_set_scan_mode(_adapter *adapter, RT_SCAN_TYPE scan_mode);
  58. int rtw_set_channel_plan(_adapter *adapter, u8 channel_plan);
  59. int rtw_set_country(_adapter *adapter, const char *country_code);
  60. int rtw_set_band(_adapter *adapter, u8 band);
  61. #endif