Supported rates
FossilOrigin-Name: 0b15a2de57f9e273f69aca269779e92019d58ea27b7059a124ace00db6c3b9eb
This commit is contained in:
parent
2b696b582a
commit
9f15b14d74
@ -16,6 +16,10 @@ const char CW_RADIO_COUNTRY_STRING[]="country_string";
|
|||||||
const char CW_RADIO_DECRYPTION_ERROR_REPORT_PERIOD[]="decryption_error_report_period";
|
const char CW_RADIO_DECRYPTION_ERROR_REPORT_PERIOD[]="decryption_error_report_period";
|
||||||
|
|
||||||
|
|
||||||
|
const char CW_RADIO_SUPPORTED_RATES[]="supported_rates";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* Cisco */
|
/* Cisco */
|
||||||
|
|
||||||
const char CW_RADIO_OCCUPANCY_LIMIT[]="occupancy_limit";
|
const char CW_RADIO_OCCUPANCY_LIMIT[]="occupancy_limit";
|
||||||
@ -29,6 +33,7 @@ struct cw_itemdef capwap_radioitemdefs[] = {
|
|||||||
{CW_RADIO_DECRYPTION_ERROR_REPORT_PERIOD,CW_ITEM_NONE,MBAG_WORD},
|
{CW_RADIO_DECRYPTION_ERROR_REPORT_PERIOD,CW_ITEM_NONE,MBAG_WORD},
|
||||||
|
|
||||||
{CW_RADIO_BSSID,CW_ITEM_NONE,MBAG_BSTR16},
|
{CW_RADIO_BSSID,CW_ITEM_NONE,MBAG_BSTR16},
|
||||||
|
{CW_RADIO_SUPPORTED_RATES,CW_ITEM_NONE,MBAG_DATA},
|
||||||
|
|
||||||
{CW_ITEM_NONE}
|
{CW_ITEM_NONE}
|
||||||
};
|
};
|
||||||
@ -90,3 +95,5 @@ int cw_radio_set_all_admin_states(mbag_t radios,int state, int cause)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,12 +3,17 @@
|
|||||||
|
|
||||||
#include "mbag.h"
|
#include "mbag.h"
|
||||||
#include "item.h"
|
#include "item.h"
|
||||||
|
#include "conn.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
extern const char CW_RADIO_ADMIN_STATE[];
|
extern const char CW_RADIO_ADMIN_STATE[];
|
||||||
extern const char CW_RADIO_OPER_STATE[];
|
extern const char CW_RADIO_OPER_STATE[];
|
||||||
|
|
||||||
|
extern const char CW_RADIO_SUPPORTED_RATES[];
|
||||||
|
|
||||||
|
|
||||||
extern const char CW_RADIO_TYPE[];
|
extern const char CW_RADIO_TYPE[];
|
||||||
extern const char CW_RADIO_REG_DOMAIN[];
|
extern const char CW_RADIO_REG_DOMAIN[];
|
||||||
extern const char CW_RADIO_BSSID[];
|
extern const char CW_RADIO_BSSID[];
|
||||||
@ -49,6 +54,8 @@ int cw_radio_update_oper_states(mbag_t radios,int cause);
|
|||||||
extern struct cw_itemdef capwap_radioitemdefs[];
|
extern struct cw_itemdef capwap_radioitemdefs[];
|
||||||
extern int cw_radio_set_all_admin_states(mbag_t radios,int state, int cause);
|
extern int cw_radio_set_all_admin_states(mbag_t radios,int state, int cause);
|
||||||
|
|
||||||
|
int cw_out_80211_supported_rates(struct conn *conn, struct cw_action_out *a, uint8_t * dst);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user