1 /* 2 * Copyright (C) 2015-2018 Alibaba Group Holding Limited 3 */ 4 5 #ifndef __COAP_SERIALIZE_H__ 6 #define __COAP_SERIALIZE_H__ 7 #include "iotx_coap_internal.h" 8 9 #ifdef __cplusplus 10 extern "C" { 11 #endif /* __cplusplus */ 12 13 unsigned short CoAPSerialize_MessageLength(CoAPMessage *msg); 14 15 int CoAPSerialize_Message(CoAPMessage *msg, unsigned char *buf, 16 unsigned short buflen); 17 18 #ifdef __cplusplus 19 } 20 #endif /* __cplusplus */ 21 22 #endif 23