2014-07-11 22:12:11 +02:00
|
|
|
/*
|
|
|
|
This file is part of libcapwap.
|
|
|
|
|
|
|
|
libcapwap is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
libcapwap is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2015-03-23 22:26:05 +01:00
|
|
|
/**
|
|
|
|
* @file
|
2018-02-23 01:41:07 +01:00
|
|
|
* @brief CAPWAP definitions as in RFC 5415
|
2015-03-23 22:26:05 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
#ifndef __CAPWAP_H
|
|
|
|
#define __CAPWAP_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2018-03-03 08:15:19 +01:00
|
|
|
|
2018-03-17 17:29:09 +01:00
|
|
|
|
2015-04-14 07:42:23 +02:00
|
|
|
#include <errno.h>
|
2014-07-11 22:12:11 +02:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
#include "conn.h"
|
|
|
|
|
2015-04-11 19:00:51 +02:00
|
|
|
#include "strlist.h"
|
2015-03-23 07:47:27 +01:00
|
|
|
|
2018-02-23 14:30:57 +01:00
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
/* capwap version and iana number */
|
2015-04-14 07:42:23 +02:00
|
|
|
|
|
|
|
/**
|
2018-03-25 11:14:37 +02:00
|
|
|
* @defgroup CAPWAP CAPWAP
|
|
|
|
* @{
|
2018-02-23 10:44:20 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2018-03-25 11:14:37 +02:00
|
|
|
/**
|
|
|
|
* @defgroup CAPWAP_DEFS Definitions from RFC5415
|
|
|
|
* @{
|
|
|
|
*/
|
2018-02-23 10:44:20 +01:00
|
|
|
|
|
|
|
/**
|
2018-04-03 07:48:44 +02:00
|
|
|
*@defgroup CAPWAPConstants General Constants
|
2018-02-23 14:18:22 +01:00
|
|
|
*@brief General constants as defined in RFC5415
|
2015-04-14 07:42:23 +02:00
|
|
|
*@{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** CAPWAP Version */
|
2018-02-23 09:12:39 +01:00
|
|
|
#define CAPWAP_VERSION (0)
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2018-02-23 09:17:26 +01:00
|
|
|
#define CAPWAP_IANA_ENTERPRISE_NUMBER 0
|
2018-02-23 14:30:57 +01:00
|
|
|
|
2018-02-23 17:36:11 +01:00
|
|
|
/** CAPWAP Control Port. This port is defined by RFC5415
|
|
|
|
* for the AC to listen on for CAPWAP control messages. */
|
2018-02-23 09:17:26 +01:00
|
|
|
#define CAPWAP_CONTROL_PORT 5246
|
2018-02-23 17:36:11 +01:00
|
|
|
|
|
|
|
/** CAPWAP Control Port as String.
|
|
|
|
* @see CAPWAP_CONTROL_PORT */
|
2018-02-23 09:17:26 +01:00
|
|
|
#define CAPWAP_CONTROL_PORT_STR "5246"
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-02-17 13:40:23 +01:00
|
|
|
/** CAPWAP Data Port */
|
|
|
|
#define CAPWAP_DATA_PPORT 5247
|
|
|
|
|
2018-04-03 07:48:44 +02:00
|
|
|
/** CAWPAP DataPort as string constant.
|
|
|
|
* @see CAPWAP_DATA_PORT */
|
2018-02-23 09:18:08 +01:00
|
|
|
#define CAPWAP_DATA_PORT_STR "5247"
|
2016-02-17 13:40:23 +01:00
|
|
|
|
2015-04-14 07:42:23 +02:00
|
|
|
/**@}*/
|
2015-03-30 07:56:42 +02:00
|
|
|
|
|
|
|
|
2014-07-29 19:29:40 +02:00
|
|
|
|
2015-04-05 20:27:17 +02:00
|
|
|
/**
|
2018-04-03 07:48:44 +02:00
|
|
|
*@defgroup CAPWAPHeaderFlags Header Flags
|
2018-02-23 14:18:22 +01:00
|
|
|
*@brief The CAPWAP control header flags
|
|
|
|
*
|
2018-02-23 10:44:20 +01:00
|
|
|
*@{
|
2015-04-11 19:00:51 +02:00
|
|
|
*/
|
2018-02-23 09:30:10 +01:00
|
|
|
#define CAPWAP_FLAG_HDR_R1 0x01 /**< bit 0 reserved 1 */
|
|
|
|
#define CAPWAP_FLAG_HDR_R2 0x02 /**< bit 1 reserved 2 */
|
|
|
|
#define CAPWAP_FLAG_HDR_R3 0x04 /**< bit 2 reserved 3 */
|
|
|
|
#define CAPWAP_FLAG_HDR_K 0x08 /**< bit 3 Keep alive flag */
|
|
|
|
#define CAPWAP_FLAG_HDR_M 0x10 /**< bit 4 MAC Adress field present */
|
|
|
|
#define CAPWAP_FLAG_HDR_W 0x20 /**< bit 5 wireless info present */
|
|
|
|
#define CAPWAP_FLAG_HDR_L 0x40 /**< bit 6 last fragment */
|
|
|
|
#define CAPWAP_FLAG_HDR_F 0x80 /**< bit 7 fragment */
|
|
|
|
#define CAPWAP_FLAG_HDR_T 0x100 /**< bit 8 type of payload frame */
|
2018-02-23 10:44:20 +01:00
|
|
|
/**@}*/
|
2015-04-05 02:07:59 +02:00
|
|
|
|
|
|
|
|
2018-02-23 01:41:07 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2018-04-03 07:48:44 +02:00
|
|
|
* @defgroup CAPWAPWBIDS Wireless binding IDs
|
2018-02-23 01:41:07 +01:00
|
|
|
* @{
|
|
|
|
*/
|
2018-02-23 13:59:36 +01:00
|
|
|
#define CAPWAP_WBID_RESERVED1 0
|
|
|
|
#define CAPWAP_WBID_IEEE80211 1
|
|
|
|
#define CAPWAP_WBID_RESERVED2 2
|
|
|
|
#define CAPWAP_WBID_EPCGLOBAL 3
|
2018-02-23 01:41:07 +01:00
|
|
|
/**@}*/
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2018-02-23 09:12:39 +01:00
|
|
|
#define CAPWAP_PACKET_PREAMBLE (CAPWAP_VERSION<<4)
|
|
|
|
#define CAPWAP_DTLS_PACKET_PREAMBLE (CAPWAP_VERSION<<4|1)
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2014-07-27 10:30:22 +02:00
|
|
|
|
2018-02-23 10:44:20 +01:00
|
|
|
|
2015-04-14 07:42:23 +02:00
|
|
|
|
2018-02-23 13:59:36 +01:00
|
|
|
/**
|
2018-04-03 07:48:44 +02:00
|
|
|
* @defgroup CAPWAPMessages Message types as defined in RFC 5416
|
2018-02-23 13:59:36 +01:00
|
|
|
* @{
|
|
|
|
*/
|
2018-02-23 14:18:22 +01:00
|
|
|
/**
|
|
|
|
* The Discovery Request message is sent by the WTP to
|
|
|
|
* find an AC on the network and inform the AC about some
|
|
|
|
* basic capabillities of the WTP. */
|
2018-02-23 13:59:36 +01:00
|
|
|
#define CAPWAP_MSG_DISCOVERY_REQUEST 1
|
2018-02-23 17:36:11 +01:00
|
|
|
|
2018-02-23 14:18:22 +01:00
|
|
|
/**
|
|
|
|
* A Discovery Response message is send by the AP to
|
|
|
|
* the WTP after receiving a Discovery Request message. */
|
|
|
|
#define CAPWAP_MSG_DISCOVERY_RESPONSE 2
|
2018-02-23 17:36:11 +01:00
|
|
|
|
2018-02-23 17:23:53 +01:00
|
|
|
/**
|
|
|
|
* The CAPWAP Join Request message type. A Join Request is
|
|
|
|
* snet by the WTP to join an AC */
|
|
|
|
#define CAPWAP_MSG_JOIN_REQUEST 3
|
|
|
|
|
2018-02-23 17:36:11 +01:00
|
|
|
/**
|
|
|
|
* Join Response, sent by the AC to the WTP in response to
|
|
|
|
* Join Request message */
|
|
|
|
#define CAPWAP_MSG_JOIN_RESPONSE 4
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The Config Status Request message is sent by the WTP
|
|
|
|
* to report ist status to the AC*/
|
|
|
|
#define CAPWAP_MSG_CONFIGURATION_STATUS_REQUEST 5
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2018-03-05 07:24:48 +01:00
|
|
|
#define CAPWAP_MSG_CONFIGURATION_STATUS_RESPONSE 6
|
2014-08-14 20:51:35 +02:00
|
|
|
|
2018-03-05 07:24:48 +01:00
|
|
|
#define CAPWAP_MSG_CONFIGURATION_UPDATE_REQUEST 7
|
|
|
|
|
|
|
|
#define CAPWAP_MSG_CONFIGURATION_UPDATE_RESPONSE 8
|
2014-08-23 12:01:10 +02:00
|
|
|
|
2018-03-05 09:56:39 +01:00
|
|
|
#define CAPWAP_MSG_WTP_EVENT_REQUEST 9
|
2018-03-05 10:06:18 +01:00
|
|
|
#define CAPWAP_MSG_WTP_EVENT_RESPONSE 10
|
2014-08-18 00:24:50 +02:00
|
|
|
|
2018-03-05 10:06:18 +01:00
|
|
|
#define CAPWAP_MSG_CHANGE_STATE_EVENT_REQUEST 11
|
|
|
|
#define CAPWAP_MSG_CHANGE_STATE_EVENT_RESPONSE 12
|
2014-08-18 00:24:50 +02:00
|
|
|
|
2018-03-05 09:56:39 +01:00
|
|
|
#define CAPWAP_MSG_ECHO_REQUEST 13
|
2018-03-05 10:06:18 +01:00
|
|
|
#define CAPWAP_MSG_ECHO_RESPONSE 14
|
2014-07-24 23:54:16 +02:00
|
|
|
|
2018-03-05 10:06:18 +01:00
|
|
|
#define CAPWAP_MSG_IMAGE_DATA_REQUEST 15
|
|
|
|
#define CAPWAP_MSG_IMAGE_DATA_RESPONSE 16
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2018-03-05 10:19:54 +01:00
|
|
|
/**
|
|
|
|
* A Reset Request message ist sent by the AC to the WTP
|
|
|
|
* to initiate a WTP reset.*/
|
2018-03-05 10:06:18 +01:00
|
|
|
#define CAPWAP_MSG_RESET_REQUEST 17
|
|
|
|
#define CAPWAP_MSG_RESET_RESPONSE 18
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2018-03-15 20:07:17 +01:00
|
|
|
#define CAPWAP_MSG_PRIMARY_DISCOVERY_REQUEST 19
|
|
|
|
#define CAPWAP_MSG_PRIMARY_DISCOVERY_RESPONSE 20
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2015-04-05 02:07:59 +02:00
|
|
|
#define CW_MSG_DATA_TRANSFER_REQUEST 21
|
|
|
|
#define CW_MSG_DATA_TRANSFER_RESPONSE 22
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2015-04-05 02:07:59 +02:00
|
|
|
#define CW_MSG_CLEAR_CONFIGURATION_REQUEST 23
|
|
|
|
#define CW_MSG_CLEAR_CONFIGURATION_RESPONSE 24
|
|
|
|
|
|
|
|
#define CW_STATION_CONFIGURATION_REQUEST 25
|
|
|
|
#define CW_STATION_CONFIGURATION_RESPONSE 26
|
|
|
|
|
|
|
|
#define CW_MSG_MAXMSG 26
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2018-02-23 13:59:36 +01:00
|
|
|
/**@}*/
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2015-03-12 23:21:57 +01:00
|
|
|
|
2018-02-23 10:44:20 +01:00
|
|
|
/**
|
2018-04-03 07:48:44 +02:00
|
|
|
* @defgroup CAPWAPMsgElems Message Elements
|
2018-02-23 10:44:20 +01:00
|
|
|
* @brief CAPWAP message elements as defined in RFC 5415
|
|
|
|
* @{
|
2018-03-03 08:15:19 +01:00
|
|
|
*/
|
2018-02-23 10:44:20 +01:00
|
|
|
|
2018-02-23 17:57:13 +01:00
|
|
|
|
2018-03-17 12:32:40 +01:00
|
|
|
#define CAPWAP_ELEM_AC_DESCRIPTOR 1 /**< AC Descriptor */
|
2018-02-23 17:57:13 +01:00
|
|
|
|
2018-03-17 12:32:40 +01:00
|
|
|
#define CAPWAP_ELEM_AC_IPV4_LIST 2 /**< AC IP V4 List */
|
|
|
|
#define CAPWAP_ELEM_AC_IPV6_LIST 3 /**< AC IP V6 List */
|
|
|
|
#define CAPWAP_ELEM_AC_NAME 4 /**< AC Name */
|
2018-04-20 05:46:50 +02:00
|
|
|
#define CAPWAP_ELEM_AC_NAME_WITH_PRIORITY 5 /**< AC Name with Priority */
|
2018-02-23 17:57:13 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* In CAPWAP RFC draft 7 the message element 5 was named
|
|
|
|
* AC Name With Index. So we define it here with this name
|
|
|
|
* to be compatible.
|
|
|
|
* @see CW_ELEM_AC_NAME_WITH_PRIORITY */
|
2018-04-20 05:46:50 +02:00
|
|
|
#define CW_ELEM_AC_NAME_WITH_INDEX CAPWAP_ELEM_AC_NAME_WITH_PRIORITY
|
2018-02-23 17:57:13 +01:00
|
|
|
|
2018-03-15 20:07:17 +01:00
|
|
|
#define CAPWAP_ELEM_AC_TIMESTAMP 6
|
2018-02-23 10:44:20 +01:00
|
|
|
/**@{
|
|
|
|
* one for all
|
|
|
|
*/
|
2018-02-23 13:59:36 +01:00
|
|
|
/* yes one for alllll */
|
2015-03-29 15:36:23 +02:00
|
|
|
#define CW_ELEM_ADD_MAC_ACL_ENTRY 7
|
|
|
|
#define CW_ELEM_ADD_STATION 8
|
|
|
|
#define CW_ELEM_RESERVED_9 9
|
2018-04-07 21:47:35 +02:00
|
|
|
#define CAPWAP_ELEM_CAPWAP_CONTROL_IPV4_ADDRESS 10
|
|
|
|
#define CAPWAP_ELEM_CAPWAP_CONTROL_IPV6_ADDRESS 11
|
2018-04-17 07:46:09 +02:00
|
|
|
#define CAPWAP_ELEM_CAPWAP_TIMERS 12
|
|
|
|
|
2018-02-23 10:44:20 +01:00
|
|
|
/**@}*/
|
2018-04-07 10:00:36 +02:00
|
|
|
#define CAPWAP_ELEM_CAPWAP_LOCAL_IPV4_ADDRESS 30
|
|
|
|
#define CAPWAP_ELEM_CAPWAP_LOCAL_IPV6_ADDRESS 50
|
2018-04-17 07:46:09 +02:00
|
|
|
|
2015-03-31 20:39:50 +02:00
|
|
|
#define CW_ELEM_CAPWAP_TRANSPORT_PROTOCOL 51 /* not in draft 7 */
|
2015-03-29 15:36:23 +02:00
|
|
|
#define CW_ELEM_DATA_TRANSFER_DATA 13
|
|
|
|
#define CW_ELEM_DATA_TRANSFER_MODE 14
|
|
|
|
#define CW_ELEM_DECRYPTION_ERROR_REPORT 15
|
2018-04-18 09:40:37 +02:00
|
|
|
#define CAPWAP_ELEM_DECRYPTION_ERROR_REPORT_PERIOD 16
|
2015-03-29 15:36:23 +02:00
|
|
|
#define CW_ELEM_DELETE_MAC_ACL_ENTRY 17
|
|
|
|
#define CW_ELEM_DELETE_STATION 18
|
2015-04-05 02:07:59 +02:00
|
|
|
#define CW_ELEM_RESERVED_19 19
|
2018-02-23 20:14:10 +01:00
|
|
|
/**
|
|
|
|
* Indicates the AP's Discovery Type
|
2018-03-05 10:19:54 +01:00
|
|
|
* @see CAPWAPDIscoveryTypes */
|
2018-02-23 20:14:10 +01:00
|
|
|
#define CAPWAP_ELEM_DISCOVERY_TYPE 20
|
2015-03-29 15:36:23 +02:00
|
|
|
#define CW_ELEM_DUPLICATE_IPV4_ADDRESS 21
|
|
|
|
#define CW_ELEM_DUPLICATE_IPV6_ADRESS 22
|
2018-03-09 07:44:17 +01:00
|
|
|
#define CAPWAP_ELEM_ECN_SUPPORT 53
|
2018-04-18 09:40:37 +02:00
|
|
|
#define CAPWAP_ELEM_IDLE_TIMEOUT 23
|
2015-03-29 15:36:23 +02:00
|
|
|
#define CW_ELEM_IMAGE_DATA 24
|
2022-08-20 14:34:08 +02:00
|
|
|
#define CAPWAP_ELEM_IMAGE_IDENTIFIER 25
|
2015-03-29 15:36:23 +02:00
|
|
|
#define CW_ELEM_IMAGE_INFORMATION 26
|
|
|
|
#define CW_ELEM_INITIATE_DOWNLOAD 27
|
2018-04-02 23:21:01 +02:00
|
|
|
#define CAPWAP_ELEM_LOCATION_DATA 28
|
2018-04-07 10:00:36 +02:00
|
|
|
#define CAPWAP_ELEM_MAXIMUM_MESSAGE_LENGTH 29
|
2018-03-11 10:34:20 +01:00
|
|
|
#define CAPWAP_ELEM_MTU_DISCOVERY_PADDING 52
|
2018-04-08 16:48:13 +02:00
|
|
|
#define CAPWAP_ELEM_RADIO_ADMINISTRATIVE_STATE 31
|
2018-04-18 09:40:37 +02:00
|
|
|
#define CAPWAP_ELEM_RADIO_OPERATIONAL_STATE 32
|
2018-04-04 20:00:05 +02:00
|
|
|
#define CAPWAP_ELEM_RESULT_CODE 33
|
2015-03-29 15:36:23 +02:00
|
|
|
#define CW_ELEM_RETURNED_MESSAGE_ELEMENT 34
|
2018-04-03 18:11:14 +02:00
|
|
|
#define CAPWAP_ELEM_SESSION_ID 35
|
2018-04-08 16:48:13 +02:00
|
|
|
#define CAPWAP_ELEM_STATISTICS_TIMER 36
|
2018-02-24 23:58:31 +01:00
|
|
|
/**
|
|
|
|
* The Vendor Specific Payload allows tronasport of
|
|
|
|
* vebdor defined data.*/
|
|
|
|
#define CAPWAP_ELEM_VENDOR_SPECIFIC_PAYLOAD 37
|
|
|
|
|
2018-02-23 20:14:10 +01:00
|
|
|
#define CAPWAP_ELEM_WTP_BOARD_DATA 38
|
|
|
|
/**
|
|
|
|
* The WTP Descriptor message element conteins information
|
|
|
|
* about the WTP */
|
|
|
|
#define CAPWAP_ELEM_WTP_DESCRIPTOR 39
|
2018-03-05 09:56:39 +01:00
|
|
|
#define CAPWAP_ELEM_WTP_FALLBACK 40
|
2018-02-24 01:52:39 +01:00
|
|
|
#define CAPWAP_ELEM_WTP_FRAME_TUNNEL_MODE 41
|
2018-03-09 10:57:16 +01:00
|
|
|
#define CAPWAP_ELEM_RESERVED_42 42
|
|
|
|
#define CAPWAP_ELEM_RESERVED_43 43
|
2018-02-24 01:52:39 +01:00
|
|
|
#define CAPWAP_ELEM_WTP_MAC_TYPE 44
|
2018-03-09 10:57:16 +01:00
|
|
|
#define CAPWAP_ELEM_WTP_NAME 45
|
|
|
|
#define CAPWAP_ELEM_RESERVED_46 46
|
|
|
|
#define CAPWAP_ELEM_WTP_RADIO_STATISTICS 47
|
|
|
|
#define CAPWAP_ELEM_WTP_REBOOT_STATISTICS 48
|
2018-03-24 08:09:37 +01:00
|
|
|
#define CAPWAP_ELEM_WTP_STATIC_IP_ADDRESS_INFORMATION 49
|
|
|
|
/*#define CAWAP_ELEM_WTP_STATIC_IP_ADDR_INFO 49*/
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2015-03-23 07:47:27 +01:00
|
|
|
|
2015-03-29 15:36:23 +02:00
|
|
|
/* Cisco's CAPWAP definitions (CAPWAP draft 7) */
|
2018-03-09 10:57:16 +01:00
|
|
|
#define CAPWAP_ELEM_WTP_IPV4_IP_ADDRESS 42
|
|
|
|
#define CAPWAP_ELEM_WTP_IPV6_IP_ADDRESS 43
|
2015-03-12 23:21:57 +01:00
|
|
|
|
2018-02-23 10:44:20 +01:00
|
|
|
/**@}*/
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-03-13 18:48:17 +01:00
|
|
|
/**
|
|
|
|
* @defgrpup BOARD_SUBELEMS Board Data Sub-Elements
|
|
|
|
* @{
|
|
|
|
*/
|
2015-04-07 07:42:36 +02:00
|
|
|
#define CW_BOARDDATA_MODELNO 0
|
|
|
|
#define CW_BOARDDATA_SERIALNO 1
|
|
|
|
#define CW_BOARDDATA_BOARDID 2
|
|
|
|
#define CW_BOARDDATA_REVISION 3
|
|
|
|
#define CW_BOARDDATA_MACADDRESS 4
|
2016-03-13 18:48:17 +01:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
|
2015-04-05 02:07:59 +02:00
|
|
|
|
|
|
|
#define CW_FLAG_RMAC_RESERVED 0
|
|
|
|
#define CW_FLAG_RMAC_SUPPORTED 1
|
|
|
|
#define CW_FLAG_RMAC_NOT_SUPPORTED 2
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2018-04-03 07:48:44 +02:00
|
|
|
/**
|
|
|
|
* @defgroup DESCRIPTORSUBELEM Descriptor sub-elements
|
|
|
|
* @{
|
|
|
|
*/
|
2015-04-05 02:07:59 +02:00
|
|
|
#define CW_SUBELEM_WTP_HARDWARE_VERSION 0
|
|
|
|
#define CW_SUBELEM_WTP_SOFTWARE_VERSION 1
|
|
|
|
#define CW_SUBELEM_WTP_BOOTLOADER_VERSION 2
|
|
|
|
#define CW_SUBELEM_WTP_OTHERSOFTWARE_VERSION 3
|
|
|
|
|
2018-03-25 08:34:32 +02:00
|
|
|
#define CAPWAP_SUBELEM_AC_HARDWARE_VERSION 4
|
2018-04-03 07:48:44 +02:00
|
|
|
#define CAPWAP_SUBELEM_AC_SOFTWARE_VERSION 5
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
|
2018-04-03 07:48:44 +02:00
|
|
|
/**
|
|
|
|
* @defgroup FRAMETUNNELBITS Frame-tunnel-mode Bits
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define CW_WTP_FRAME_TUNNEL_MODE_R 1 /**< Reserved */
|
|
|
|
#define CW_WTP_FRAME_TUNNEL_MODE_L 2 /**< Local bridging */
|
|
|
|
#define CW_WTP_FRAME_TUNNEL_MODE_E 4 /**< 802.3 mode */
|
|
|
|
#define CW_WTP_FRAME_TUNNEL_MODE_N 8 /**< native mode */
|
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2018-02-23 10:44:20 +01:00
|
|
|
|
|
|
|
/**
|
2018-04-03 07:48:44 +02:00
|
|
|
* @defgroup CAPWAPDiscoveryTypes Discovery Types
|
2018-02-23 10:44:20 +01:00
|
|
|
* @brief CAPWAP Discovery Types defined in RFC5415
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/** Discovery Type is unknown */
|
|
|
|
#define CAPWAP_DISCOVERY_TYPE_UNKNOWN 0
|
|
|
|
/** AC was discoverd by a static IP address stored in AP's config */
|
|
|
|
#define CAPWAP_DISCOVERY_TYPE_STATIC 1
|
|
|
|
/** AC was discovered by DHCP option 43 returned from a DHCP server */
|
|
|
|
#define CAPWAP_DISCOVERY_TYPE_DHCP 2
|
|
|
|
/** AC was discovered by DNS lookup */
|
|
|
|
#define CAPWAP_DISCOVERY_TYPE_DNS 3
|
|
|
|
/** AC was discovered by referral */
|
|
|
|
#define CAPWAP_DISCOVERY_TYPE_AC_REFERRAL 4
|
|
|
|
/**@}*/
|
2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
|
2018-02-22 23:04:15 +01:00
|
|
|
/* WTP mac types */
|
2018-03-09 10:57:16 +01:00
|
|
|
#define CAPWAP_WTP_MAC_TYPE_LOCAL 0
|
|
|
|
#define CAPWAP_WTP_MAC_TYPE_SPLIT 1
|
|
|
|
#define CAPWAP_WTP_MAC_TYPE_BOTH 2
|
2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
|
2018-03-03 08:15:19 +01:00
|
|
|
/*
|
2014-07-11 22:12:11 +02:00
|
|
|
//#define CWMSG_MAX_SIZE 65536
|
2018-02-22 23:04:15 +01:00
|
|
|
//#define CWMSG_MAX_SIZE 2048
|
2018-03-03 08:15:19 +01:00
|
|
|
*/
|
2016-04-10 16:00:04 +02:00
|
|
|
|
2018-04-03 18:11:14 +02:00
|
|
|
#define CAPWAP_SESSION_ID_LEN 16
|
2018-03-30 11:58:05 +02:00
|
|
|
#define CAPWAP_MAX_AC_NAME_LEN 512
|
2018-04-02 23:21:01 +02:00
|
|
|
#define CAPWAP_MAX_WTP_NAME_LEN 512
|
|
|
|
#define CAPWAP_MAX_LOCATION_DATA_LEN 1024
|
2016-04-10 16:00:04 +02:00
|
|
|
|
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
/* capwap timer default values */
|
2018-03-30 19:45:27 +02:00
|
|
|
#define CAPWAP_DISCOVERY_INTERVAL 5
|
|
|
|
#define CAPWAP_MAX_DISCOVERY_INTERVAL 20
|
|
|
|
#define CAPWAP_MIN_DISCOVERY_INTERVAL 2
|
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
#define CAPWAP_RETRANSMIT_INTERVAL 3
|
|
|
|
#define CAPWAP_MAX_DISCOVERIES 10
|
|
|
|
#define CAPWAP_MAX_RETRANSMIT 5
|
|
|
|
#define CAPWAP_SILENT_INTERVAL 30
|
|
|
|
#define CAPWAP_ECHO_INTERVAL 30
|
2014-08-18 00:06:06 +02:00
|
|
|
#define CAPWAP_WAIT_DTLS 60
|
|
|
|
#define CAPWAP_WAIT_JOIN 60
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2018-05-05 00:36:19 +02:00
|
|
|
#define CAPWAP_TIMER_CHANGE_STATE_PENDING_TIMER 25
|
2018-05-07 10:57:12 +02:00
|
|
|
#define CAPWAP_TIMER_DATA_CHECK_TIMER 30
|
2018-05-05 00:36:19 +02:00
|
|
|
|
2016-03-15 19:23:41 +01:00
|
|
|
#define CAPWAP_IDLE_TIMEOUT 300
|
|
|
|
|
2016-03-12 22:27:25 +01:00
|
|
|
|
|
|
|
#define CAPWAP_STATISTICS_TIMER 120
|
|
|
|
|
|
|
|
|
2018-03-30 11:58:05 +02:00
|
|
|
/*#define CW_TIMERS ((CW_DISCOVERY_INTERVAL << 8) | CAPWAP_ECHO_INTERVAL)*/
|
2015-04-21 08:24:59 +02:00
|
|
|
|
2018-03-03 08:15:19 +01:00
|
|
|
/*
|
|
|
|
//#define CAPWAP_CIPHER "PSK-AES128-CBC-SHA:"
|
2015-03-23 07:47:27 +01:00
|
|
|
//#define CAPWAP_CIPHER "AES128-SHA"
|
2018-03-03 08:15:19 +01:00
|
|
|
*/
|
2015-02-07 02:04:09 +01:00
|
|
|
|
2022-07-10 12:25:14 +02:00
|
|
|
|
|
|
|
#ifdef USE_OPENSSL
|
|
|
|
#define CAPWAP_CIPHER "ALL"
|
|
|
|
#else
|
|
|
|
#define CAPWAP_CIPHER "+RSA:+AES-128-CBC:+SHA1:"
|
2015-02-07 02:04:09 +01:00
|
|
|
#endif
|
2014-08-02 14:19:18 +02:00
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-03-21 19:59:50 +01:00
|
|
|
/**
|
|
|
|
* @defgroup ACSECURITY Security Flags used in AC Descriptor
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/** X.509 Support */
|
2018-03-17 12:32:40 +01:00
|
|
|
#define CAPWAP_FLAG_AC_SECURITY_X 2
|
2016-03-21 19:59:50 +01:00
|
|
|
/* PSK Support */
|
2018-03-17 12:32:40 +01:00
|
|
|
#define CAPWAP_FLAG_AC_SECURITY_S 4
|
2016-03-21 19:59:50 +01:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
|
2016-03-21 19:47:08 +01:00
|
|
|
/**
|
2018-03-03 08:15:19 +01:00
|
|
|
* @defgroup ACDTLSPOLICY CAPWAP DTLS Policy Flags
|
|
|
|
* The DTLS policy flags are describing the data transfer
|
|
|
|
* policy by AC.
|
2016-03-21 19:47:08 +01:00
|
|
|
* @{
|
|
|
|
*/
|
2018-03-03 08:15:19 +01:00
|
|
|
|
2016-03-21 19:47:08 +01:00
|
|
|
/** Reserved */
|
2018-03-03 08:15:19 +01:00
|
|
|
#define CAPWAP_FLAG_DTLS_POLICY_R 1
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear Text Data Channel Support.
|
|
|
|
* Means unencrypted data is supprted.*/
|
|
|
|
#define CAPWAP_FLAG_DTLS_POLICY_C 2
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DTLS Data Channel Support.
|
|
|
|
* Encrypted data is supported. */
|
|
|
|
#define CAPWAP_FLAG_DTLS_POLICY_D 4
|
2016-03-21 19:47:08 +01:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
2014-07-11 22:12:11 +02:00
|
|
|
|
|
|
|
|
2015-03-17 01:10:08 +01:00
|
|
|
|
2014-08-14 11:43:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2016-03-11 13:24:31 +01:00
|
|
|
enum cw_reboot_failure_types {
|
2016-03-11 18:16:13 +01:00
|
|
|
CW_REBOOT_TYPE_NOT_SUPPORTED=0,
|
|
|
|
CW_REBOOT_TYPE_AC_INITIATED=1,
|
|
|
|
CW_REBOOT_TYPE_LINK_FAILURE=2,
|
|
|
|
CW_REBOOT_TYPE_SOFTWARE_FAILURE=3,
|
|
|
|
CW_REBOOT_TYPE_HARDWARE_FAILURE=4,
|
|
|
|
CW_REBOOT_TYPE_OTHER_FAILURE=5,
|
|
|
|
CW_REBOOT_TYPE_FAILURE_ONKNOWN
|
2016-03-11 13:24:31 +01:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2018-03-09 10:57:16 +01:00
|
|
|
/**
|
|
|
|
* @defgroup CAPWAPResultCodes CAPWAP Result Codes
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** The Result Success code is sent, whenever
|
|
|
|
* all went fine ;-) */
|
2018-03-03 08:15:19 +01:00
|
|
|
#define CAPWAP_RESULT_SUCCESS 0
|
2018-03-09 10:57:16 +01:00
|
|
|
/**
|
|
|
|
* The Missing AC List Result Code is sent by the
|
|
|
|
* WTP to the AC when the AC List is missing */
|
2015-04-10 17:14:55 +02:00
|
|
|
#define CW_RESULT_MISSING_AC_LIST 1
|
2018-03-09 10:57:16 +01:00
|
|
|
#define CAPWAP_RESULT_SUCCESS_NAT 2
|
2015-03-29 15:36:23 +02:00
|
|
|
#define CW_RESULT_JOIN_FAILURE 3
|
|
|
|
#define CW_RESULT_JOIN_RESOURCE_DEPLETION 4
|
|
|
|
#define CW_RESULT_JOIN_UNKNOWN_SOURCE 5
|
2015-04-10 17:14:55 +02:00
|
|
|
#define CW_RESULT_JOIN_INCORRECT_DATA 6
|
2015-04-05 02:07:59 +02:00
|
|
|
#define CW_RESULT_JOIN_FAILURE_SESSION_ALREADY_IN_USE 7
|
|
|
|
#define CW_RESULT_JOIN_FAILURE_WTP_HARDWARE_NOT_SUPPORTED 8
|
|
|
|
#define CW_RESULT_JOIN_FAILURE_BINDING_NOT_SUPPORTED 9
|
2015-04-28 22:50:29 +02:00
|
|
|
#define CW_RESULT_RESET_UNABLE_TO_RESET 10
|
2014-08-16 19:30:21 +02:00
|
|
|
|
2015-04-05 02:07:59 +02:00
|
|
|
#define CW_RESULT_RESET_FAILURE_FIRMWARE_WRITE_ERROR 11
|
2014-08-16 19:30:21 +02:00
|
|
|
|
2018-03-03 08:15:19 +01:00
|
|
|
/**
|
|
|
|
* Configuration Failure (Unable to Apply Requested Configuration
|
|
|
|
* - Service Provided Anyhow)
|
|
|
|
*/
|
|
|
|
#define CW_RESULT_CONFIGURATION_FAILURE 12
|
2014-08-16 19:30:21 +02:00
|
|
|
|
2018-03-03 08:15:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2014-08-16 19:30:21 +02:00
|
|
|
|
|
|
|
13 Configuration Failure (Unable to Apply Requested Configuration
|
|
|
|
- Service Not Provided)
|
2015-04-20 21:28:22 +02:00
|
|
|
*/
|
2018-03-09 10:57:16 +01:00
|
|
|
#define CAPWAP_RESULT_CONFIGURATION_FAILURE_SERVICE_NOT PROVIDED 13
|
2018-03-03 08:15:19 +01:00
|
|
|
/**
|
|
|
|
* Image Data Error (Invalid Checksum)
|
|
|
|
*/
|
|
|
|
#define CW_RESULT_IMAGE_DATA_INVALID_CHECKSUM 14
|
2014-08-14 11:43:09 +02:00
|
|
|
|
2018-03-03 08:15:19 +01:00
|
|
|
/**
|
|
|
|
* Image Data Error (Invalid Data Length)
|
|
|
|
*/
|
|
|
|
#define CW_RESULT_IMAGE_DATA_IVALID_LENGTH 15
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Image Data Error (Other Error)
|
|
|
|
*/
|
|
|
|
#define CAPWAP_RESULT_IMAGE_DATA_ERROR 16
|
2014-08-14 11:43:09 +02:00
|
|
|
|
2015-04-07 07:42:36 +02:00
|
|
|
/*
|
2014-08-16 19:30:21 +02:00
|
|
|
17 Image Data Error (Image Already Present)
|
2015-03-17 01:10:08 +01:00
|
|
|
*/
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2018-02-26 22:37:39 +01:00
|
|
|
#define CAPWAP_RESULT_MSG_INVALID_IN_CURRENT_STATE 18
|
2018-03-09 10:57:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
#define CAPWAP_RESULT_MSG_UNRECOGNIZED 19
|
|
|
|
|
2015-03-23 07:47:27 +01:00
|
|
|
#define CW_RESULT_MISSING_MAND_ELEM 20
|
2015-04-07 07:42:36 +02:00
|
|
|
|
2014-08-16 19:30:21 +02:00
|
|
|
|
2018-03-09 10:57:16 +01:00
|
|
|
#define CAPWAP_RESULT_UNRECOGNIZED_MESSAGE_ELEMENT 21
|
2016-03-06 21:50:01 +01:00
|
|
|
|
|
|
|
/* 22 Data Transfer Error (No Information to Transfer)
|
2014-08-16 19:30:21 +02:00
|
|
|
|
|
|
|
*/
|
2014-08-14 11:43:09 +02:00
|
|
|
|
2015-03-17 01:10:08 +01:00
|
|
|
|
|
|
|
|
2016-04-09 13:36:32 +02:00
|
|
|
#define CW_RADIO_ADMIN_STATE_ENABLED 1
|
|
|
|
#define CW_RADIO_ADMIN_STATE_DISABLED 2
|
|
|
|
|
|
|
|
#define CW_RADIO_OPER_STATE_ENABLED 1
|
|
|
|
#define CW_RADIO_OPER_STATE_DISABLED 2
|
|
|
|
|
|
|
|
#define CW_RADIO_OPER_STATE_ENABLED_7 2
|
|
|
|
#define CW_RADIO_OPER_STATE_DISABLED_7 1
|
2016-04-02 09:05:07 +02:00
|
|
|
|
|
|
|
|
2016-04-09 13:51:03 +02:00
|
|
|
#define CW_RADIO_OPER_CAUSE_NORMAL 0
|
|
|
|
#define CW_RADIO_OPER_CAUSE_RADIO_FAILURE 1
|
|
|
|
#define CW_RADIO_OPER_CAUSE_SW_FAILURE 2
|
|
|
|
#define CW_RADIO_OPER_CAUSE_ADMIN_SET 3
|
|
|
|
|
|
|
|
|
2018-03-09 10:57:16 +01:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
2016-04-09 13:51:03 +02:00
|
|
|
|
|
|
|
|
2018-03-17 16:21:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-03-25 08:34:32 +02:00
|
|
|
/*
|
2018-03-17 16:21:23 +01:00
|
|
|
struct cwimage_data {
|
|
|
|
uint8_t *data;
|
|
|
|
uint8_t type;
|
|
|
|
int len;
|
|
|
|
uint32_t vendor_id;
|
|
|
|
uint8_t *identifier;
|
|
|
|
};
|
|
|
|
|
2015-03-17 01:10:08 +01:00
|
|
|
extern void cw_read_image_data_request(struct cwimage_data *, uint8_t * msg, int len);
|
|
|
|
|
2018-03-17 16:21:23 +01:00
|
|
|
|
2015-03-23 07:47:27 +01:00
|
|
|
|
|
|
|
|
2015-04-05 02:07:59 +02:00
|
|
|
extern int cw_send_echo_response(struct conn *conn, int seqnum,
|
|
|
|
struct radioinfo *radioinfo);
|
2015-03-23 07:47:27 +01:00
|
|
|
extern int cw_handle_echo_request(void *d);
|
|
|
|
extern void cw_send_image_file(struct conn *conn, FILE * infile);
|
|
|
|
|
2015-03-29 01:55:06 +01:00
|
|
|
extern int cw_readmsg_configuration_status_response(uint8_t * elems, int elems_len);
|
2015-04-05 02:07:59 +02:00
|
|
|
extern int cw_readmsg_configuration_update_request(uint8_t * elems, int elems_len);
|
2015-03-28 10:13:57 +01:00
|
|
|
|
2018-03-25 08:34:32 +02:00
|
|
|
*/
|
2015-03-28 10:13:57 +01:00
|
|
|
|
2015-03-31 08:04:03 +02:00
|
|
|
/* Message to text stuff */
|
|
|
|
|
2015-03-31 18:37:07 +02:00
|
|
|
/* Constants to string conversion lists */
|
2018-03-17 19:32:44 +01:00
|
|
|
extern struct cw_StrListElem capwap_strings_msg[];
|
|
|
|
extern struct cw_StrListElem capwap_strings_state[];
|
|
|
|
extern struct cw_StrListElem capwap_strings_vendor[];
|
|
|
|
extern struct cw_StrListElem capwap_strings_elem[];
|
|
|
|
extern struct cw_StrListElem capwap_strings_result[];
|
|
|
|
extern struct cw_StrListElem capwap_strings_board[];
|
2018-03-28 09:36:15 +02:00
|
|
|
/*extern struct cw_StrListElem mbag_item_strings[];*/
|
2015-04-19 16:44:20 +02:00
|
|
|
|
|
|
|
|
2015-03-31 18:37:07 +02:00
|
|
|
|
2015-03-31 14:10:55 +02:00
|
|
|
#define cw_strmsg(id) cw_strlist_get_str(capwap_strings_msg,id)
|
2015-04-05 02:07:59 +02:00
|
|
|
#define cw_strelem(id) cw_strlist_get_str(capwap_strings_elem,id)
|
2018-05-05 00:36:19 +02:00
|
|
|
|
2018-05-07 10:57:12 +02:00
|
|
|
|
|
|
|
#define cw_strstate(id) cw_strlist_get_str(capwap_strings_state,id)
|
2015-03-31 20:39:50 +02:00
|
|
|
#define cw_strvendor(id) cw_strlist_get_str(capwap_strings_vendor,id)
|
2018-03-03 08:15:19 +01:00
|
|
|
|
2016-03-13 18:48:17 +01:00
|
|
|
#define cw_strresult(id) cw_strlist_get_str(capwap_strings_result,id)
|
2018-03-03 08:15:19 +01:00
|
|
|
|
2016-03-13 18:48:17 +01:00
|
|
|
#define cw_strboardelem(id) cw_strlist_get_str(capwap_strings_board,id)
|
2015-03-31 08:04:03 +02:00
|
|
|
|
2018-03-28 09:36:15 +02:00
|
|
|
/*#define cw_stritem(id) cw_strlist_get_str(mbag_item_strings,(id))*/
|
2015-04-19 16:44:20 +02:00
|
|
|
|
2015-04-14 07:42:23 +02:00
|
|
|
/*
|
2015-04-11 19:00:51 +02:00
|
|
|
#define cw_strrc(rc) \
|
|
|
|
((rc)<0 ? ((rc)!=EAGAIN ? strerror(errno):"Timed out"): cw_strresult(rc))
|
2015-04-13 11:00:46 +02:00
|
|
|
#define cw_strerror(rc) cw_strrc(rc)
|
2015-04-14 07:42:23 +02:00
|
|
|
*/
|
|
|
|
|
2018-03-17 12:32:40 +01:00
|
|
|
#include "strheap.h"
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2018-03-02 13:36:03 +01:00
|
|
|
const char * cw_strerror(int rc);
|
2018-03-09 15:38:21 +01:00
|
|
|
int cw_result_is_ok(int rc);
|
2018-03-02 13:36:03 +01:00
|
|
|
const char *cw_strelemp_(cw_strheap_t h, int msg_id);
|
2015-04-11 19:00:51 +02:00
|
|
|
|
|
|
|
|
2015-04-07 07:42:36 +02:00
|
|
|
|
2018-03-02 13:36:03 +01:00
|
|
|
#define cw_strrc cw_strerror
|
2016-02-23 19:38:10 +01:00
|
|
|
|
2015-04-07 07:42:36 +02:00
|
|
|
#define cw_strelemp(p,id) cw_strelemp_((p)->strelem,id)
|
2015-04-05 20:27:17 +02:00
|
|
|
|
2018-03-30 11:58:05 +02:00
|
|
|
/*
|
2015-04-05 02:07:59 +02:00
|
|
|
struct cw_ac_status {
|
|
|
|
int stations;
|
|
|
|
int limit;
|
|
|
|
int active_wtps;
|
|
|
|
int max_wtps;
|
|
|
|
int security;
|
|
|
|
int rmac_field;
|
|
|
|
int dtls_policy;
|
|
|
|
};
|
2018-03-30 11:58:05 +02:00
|
|
|
*/
|
2015-03-31 14:03:21 +02:00
|
|
|
|
2015-04-05 20:27:17 +02:00
|
|
|
/**
|
2016-03-11 22:23:00 +01:00
|
|
|
*@defgroup CAPWAP CAPWAP
|
|
|
|
*@{
|
2015-04-05 20:27:17 +02:00
|
|
|
*/
|
|
|
|
|
2016-03-11 22:23:00 +01:00
|
|
|
/**
|
|
|
|
* CAWAP States
|
|
|
|
*/
|
|
|
|
enum capwap_states {
|
|
|
|
CW_STATE_NONE = 0,
|
2022-08-11 00:21:01 +02:00
|
|
|
CAPWAP_STATE_DISCOVERY, /**< Discovery State */
|
|
|
|
CAPWAP_STATE_JOIN, /**< Join State */
|
|
|
|
CAPWAP_STATE_JOIN_COMPLETE,
|
|
|
|
CAPWAP_STATE_CONFIGURE, /**< Config State */
|
2018-05-05 00:36:19 +02:00
|
|
|
CAPWAP_STATE_DTLS_SETUP, /**< DTLS Setup */
|
2016-03-11 22:23:00 +01:00
|
|
|
/** Image Data Upload */
|
|
|
|
CW_STATE_IMAGE_DATA,
|
|
|
|
CW_STATE_UPDATE,
|
|
|
|
/** Run State */
|
2018-05-05 00:36:19 +02:00
|
|
|
CAPWAP_STATE_RUN,
|
2018-05-07 10:57:12 +02:00
|
|
|
CAPWAP_STATE_DATA_CHECK,
|
2018-05-05 00:36:19 +02:00
|
|
|
|
|
|
|
CAPWAP_STATE_TIMEOUT
|
2016-03-11 22:23:00 +01:00
|
|
|
};
|
2015-04-05 20:27:17 +02:00
|
|
|
|
2016-03-11 22:23:00 +01:00
|
|
|
/**
|
|
|
|
*@}
|
|
|
|
*/
|
2015-04-05 20:27:17 +02:00
|
|
|
|
|
|
|
|
2015-04-05 03:33:54 +02:00
|
|
|
|
2016-03-11 13:24:31 +01:00
|
|
|
|
2014-07-11 22:12:11 +02:00
|
|
|
#endif
|
2018-02-23 10:44:20 +01:00
|
|
|
/**
|
2018-03-25 11:14:37 +02:00
|
|
|
* @} CAPWAP_DEFS
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @} CAPWAP
|
2018-02-23 10:44:20 +01:00
|
|
|
*/
|