From 3bf046071a17247b2d33c538ab7309a63f3b1903 Mon Sep 17 00:00:00 2001 From: "7u83@mail.ru" <7u83@mail.ru@noemail.net> Date: Mon, 4 May 2015 05:32:30 +0000 Subject: [PATCH] Added some comments, and Lancom. FossilOrigin-Name: 39254b0a1e82ce647ad66bcd8a0822951f4fd6a14231d5db591980f4e4ef0749 --- src/capwap/action.h | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/src/capwap/action.h b/src/capwap/action.h index 0cd9dc92..e7a489f1 100644 --- a/src/capwap/action.h +++ b/src/capwap/action.h @@ -16,7 +16,12 @@ */ - +/** + * @file + * @brief CAPWAP ACtions Header + * @defgroup ACTION CAPWAP/LWAP Actions + * @{ + */ #ifndef __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 */ enum capwapmodes { - /** Unknown -- means auto detect and - set as soon as possible */ - CW_MODE_UNKNOWN, - /** Standard mode as specified in RFC 5415 */ - CW_MODE_STD , + /** Auto -- means auto detect the CAPWAP mode and + it set as soon as possible */ + CW_MODE_AUTO, + /** Standard CAPWAP mode as specified in RFC 5415 */ + CW_MODE_CAPWAP, /** Cisco specific CAPWAP */ CW_MODE_CISCO, /** CIPWAP, a mix of standard CAPWAP and some Cisco extension */ CW_MODE_CIPWAP, /** 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 strelem; cw_itemdefheap_t items; + cw_itemdefheap_t radioitems; /** Supported Wireless Binding IDs (WBID) */ struct avltree * wbids; @@ -142,6 +150,8 @@ struct cw_actiondef{ #define cw_actionlist_get_node(t,a) avltree_get_node(t,a) +/**@}*/ + #endif