1 /****************************************************************************** 2 * 3 * Copyright(c) 2007 - 2012 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 ******************************************************************************/ 15 #ifndef __RTW_AP_H_ 16 #define __RTW_AP_H_ 17 18 void init_mlme_ap_info(struct adapter *padapter); 19 void free_mlme_ap_info(struct adapter *padapter); 20 /* void update_BCNTIM(struct adapter *padapter); */ 21 void update_beacon(struct adapter *padapter, u8 ie_id, u8 *oui, u8 tx); 22 void add_RATid(struct adapter *padapter, struct sta_info *psta, u8 rssi_level); 23 void expire_timeout_chk(struct adapter *padapter); 24 void update_sta_info_apmode(struct adapter *padapter, struct sta_info *psta); 25 void start_bss_network(struct adapter *padapter, u8 *pbuf); 26 int rtw_check_beacon_data(struct adapter *padapter, u8 *pbuf, int len); 27 void rtw_ap_restore_network(struct adapter *padapter); 28 void rtw_set_macaddr_acl(struct adapter *padapter, int mode); 29 int rtw_acl_add_sta(struct adapter *padapter, u8 *addr); 30 int rtw_acl_remove_sta(struct adapter *padapter, u8 *addr); 31 32 u8 rtw_ap_set_pairwise_key(struct adapter *padapter, struct sta_info *psta); 33 int rtw_ap_set_group_key(struct adapter *padapter, u8 *key, u8 alg, int keyid); 34 int rtw_ap_set_wep_key(struct adapter *padapter, u8 *key, u8 keylen, int keyid, u8 set_tx); 35 36 void associated_clients_update(struct adapter *padapter, u8 updated); 37 void bss_cap_update_on_sta_join(struct adapter *padapter, struct sta_info *psta); 38 u8 bss_cap_update_on_sta_leave(struct adapter *padapter, struct sta_info *psta); 39 void sta_info_update(struct adapter *padapter, struct sta_info *psta); 40 void ap_sta_info_defer_update(struct adapter *padapter, struct sta_info *psta); 41 u8 ap_free_sta(struct adapter *padapter, struct sta_info *psta, bool active, u16 reason); 42 int rtw_sta_flush(struct adapter *padapter); 43 void start_ap_mode(struct adapter *padapter); 44 void stop_ap_mode(struct adapter *padapter); 45 46 #endif 47 void update_bmc_sta(struct adapter *padapter); 48