mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-01-16 20:52:57 +08:00
15 lines
207 B
C
15 lines
207 B
C
#ifndef _COAP_SERVER_H
|
|
#define _COAP_SERVER_H 1
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
size_t coap_server_respond(char *data, unsigned short len, unsigned short size);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|