diff --git a/doc/capwap_cisco.txt b/doc/capwap_cisco.txt index f33f4c1e..5bfb0e71 100644 --- a/doc/capwap_cisco.txt +++ b/doc/capwap_cisco.txt @@ -642,11 +642,11 @@ Length: >=4 74. Cisco DTLS Data Config (LWAPP) - 0 1 - 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 - +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ - | DTLS Data cap |DTLS Data en. | - +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +0 1 +0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +| DTLS Data cap |DTLS Data en. | ++-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ Type: 74 Length: 2 @@ -659,6 +659,16 @@ Length: 2 0: DTLS Data disabled 1: DTLS Data enabled +80. Auto Immune Payload (?) + 0 1 + 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 + +-+-+-+-+-+-+-+-+ + | Auto Immune | + +-+-+-+-+-+-+-+-+ + + + + 85. Cisco Primed Join Timeout (LWAPP) 0 1 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 @@ -669,6 +679,24 @@ Type: 85 Timeout: Timeout in seconds + +111. RAD Extended Config + + 0 1 2 3 + 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + | Radio ID | Beracon Interval | Beacon + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + Range | Multicast Buffer | Multicast + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + Data Rate | RX SenSop Threshold | Cccat + +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ + .... | + +-+-+-+-+-+-+-+-+-+ + + + + 128. Cisco Add WLAN Name (?) diff --git a/src/cw/lw_cisco_id_to_str.c b/src/cw/lw_cisco_id_to_str.c index cbbefc46..13a0ffe3 100644 --- a/src/cw/lw_cisco_id_to_str.c +++ b/src/cw/lw_cisco_id_to_str.c @@ -41,7 +41,8 @@ const char * lw_cisco_id_to_str(int elem_id) case LW_CISCO_PRIMED_DISCOVERY_TIMEOUT: return "Primed Discovery Timeout"; - + case LW_CISCO_RAD_EXTENDED_CONFIG: + return "RAD Extended Config"; default: return "Unknown"; diff --git a/src/cw/lwapp_cisco.h b/src/cw/lwapp_cisco.h index e9074fbf..fb7a2131 100644 --- a/src/cw/lwapp_cisco.h +++ b/src/cw/lwapp_cisco.h @@ -44,6 +44,7 @@ #define LW_CISCO_PRIMED_JOIN_TIMEOUT 85 #define LW_CISCO_AP_DTLS_DATA_CFG 74 +#define LW_CISCO_RAD_EXTENDED_CONFIG 111 #define LW_CISCO_ADD_WLAN 128 #define LW_CISCO_SSC_HASH_VALIDATION 133