nodemcu-firmware/app/coap/coap_server.h

15 lines
222 B
C
Raw Normal View History

#ifndef _COAP_SERVER_H
#define _COAP_SERVER_H 1
#ifdef __cplusplus
extern "C" {
#endif
2015-03-15 06:44:50 +01:00
size_t coap_server_respond(char *req, unsigned short reqlen, char *rsp, unsigned short rsplen);
#ifdef __cplusplus
}
#endif
#endif