1 #ifndef __IOTX_COAP_CONFIG__ 2 #define __IOTX_COAP_CONFIG__ 3 4 #define COAP_MSG_MAX_TOKEN_LEN 8 5 #define COAP_MSG_MAX_OPTION_NUM 12 6 #define COAP_MSG_MAX_PATH_LEN 128 7 #ifndef COAP_LARGE_MEMORY_SUPPORT 8 #define COAP_MSG_MAX_PDU_LEN 1280 9 #else 10 #define COAP_MSG_MAX_PDU_LEN 4096 11 #endif 12 13 #ifndef CONFIG_COAP_AUTH_TIMEOUT 14 #define CONFIG_COAP_AUTH_TIMEOUT (3 * 1000) 15 #endif 16 17 #endif 18