1 /* 2 * Copyright (C) 2015-2018 Alibaba Group Holding Limited 3 */ 4 5 #ifndef _IOTX_CM_COAP_H_ 6 #define _IOTX_CM_COAP_H_ 7 #include "iotx_cm.h" 8 #include "iotx_cm_internal.h" 9 #include "linkkit/coap_api.h" 10 11 typedef struct { 12 uint32_t token_num; 13 void *user_data; 14 char *topic; 15 iotx_cm_data_handle_cb responce_cb; 16 void *context; 17 dlist_t linked_list; 18 } coap_response_node_t; 19 20 iotx_cm_connection_t *iotx_cm_open_coap(iotx_cm_init_param_t *params); 21 22 #endif /* _LINKKIT_CM_H_ */ 23