15 lines
222 B
C
15 lines
222 B
C
#ifndef _COAP_SERVER_H
|
|
#define _COAP_SERVER_H 1
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
size_t coap_server_respond(char *req, unsigned short reqlen, char *rsp, unsigned short rsplen);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|