coap_server.h 222 B

1234567891011121314
  1. #ifndef _COAP_SERVER_H
  2. #define _COAP_SERVER_H 1
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. size_t coap_server_respond(char *req, unsigned short reqlen, char *rsp, unsigned short rsplen);
  7. #ifdef __cplusplus
  8. }
  9. #endif
  10. #endif