Added some comments, and Lancom.
FossilOrigin-Name: 39254b0a1e82ce647ad66bcd8a0822951f4fd6a14231d5db591980f4e4ef0749
This commit is contained in:
parent
7d5a8eb241
commit
3bf046071a
@ -16,7 +16,12 @@
|
|||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file
|
||||||
|
* @brief CAPWAP ACtions Header
|
||||||
|
* @defgroup ACTION CAPWAP/LWAP Actions
|
||||||
|
* @{
|
||||||
|
*/
|
||||||
#ifndef __ACTION_H
|
#ifndef __ACTION_H
|
||||||
#define __ACTION_H
|
#define __ACTION_H
|
||||||
|
|
||||||
@ -110,18 +115,20 @@ extern int cw_actionlist_out_register_actions(cw_actionlist_out_t t,cw_action_ou
|
|||||||
* Definition CAPWAP modes
|
* Definition CAPWAP modes
|
||||||
*/
|
*/
|
||||||
enum capwapmodes {
|
enum capwapmodes {
|
||||||
/** Unknown -- means auto detect and
|
/** Auto -- means auto detect the CAPWAP mode and
|
||||||
set as soon as possible */
|
it set as soon as possible */
|
||||||
CW_MODE_UNKNOWN,
|
CW_MODE_AUTO,
|
||||||
/** Standard mode as specified in RFC 5415 */
|
/** Standard CAPWAP mode as specified in RFC 5415 */
|
||||||
CW_MODE_STD ,
|
CW_MODE_CAPWAP,
|
||||||
/** Cisco specific CAPWAP */
|
/** Cisco specific CAPWAP */
|
||||||
CW_MODE_CISCO,
|
CW_MODE_CISCO,
|
||||||
/** CIPWAP, a mix of standard CAPWAP and some
|
/** CIPWAP, a mix of standard CAPWAP and some
|
||||||
Cisco extension */
|
Cisco extension */
|
||||||
CW_MODE_CIPWAP,
|
CW_MODE_CIPWAP,
|
||||||
/** Zyxel */
|
/** Zyxel */
|
||||||
CW_MODE_ZYXEL
|
CW_MODE_ZYXEL,
|
||||||
|
/** Lancom */
|
||||||
|
CW_MODE_LANCOM
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
@ -133,6 +140,7 @@ struct cw_actiondef{
|
|||||||
cw_strheap_t strmsg;
|
cw_strheap_t strmsg;
|
||||||
cw_strheap_t strelem;
|
cw_strheap_t strelem;
|
||||||
cw_itemdefheap_t items;
|
cw_itemdefheap_t items;
|
||||||
|
cw_itemdefheap_t radioitems;
|
||||||
|
|
||||||
/** Supported Wireless Binding IDs (WBID) */
|
/** Supported Wireless Binding IDs (WBID) */
|
||||||
struct avltree * wbids;
|
struct avltree * wbids;
|
||||||
@ -142,6 +150,8 @@ struct cw_actiondef{
|
|||||||
|
|
||||||
#define cw_actionlist_get_node(t,a) avltree_get_node(t,a)
|
#define cw_actionlist_get_node(t,a) avltree_get_node(t,a)
|
||||||
|
|
||||||
|
/**@}*/
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user