mongoose/docs/c-api/coap.h/mg_coap_send_message.md
Dmitry Frank 7bed7ff482 Docs are generated for Mongoose
Comments in headers are changed a bit: removed adoc-specific stuff,
markdown is used instead

PUBLISHED_FROM=9242cce85cc52a47a197d377e7e23804721a6bb5
2016-03-21 13:29:29 +01:00

625 B

title decl_name symbol_kind signature
mg_coap_send_message() mg_coap_send_message func uint32_t mg_coap_send_message(struct mg_connection *nc, struct mg_coap_message *cm);

Compose CoAP message from mg_coap_message and send it into nc connection. Return 0 on success. On error, it is a bitmask:

  • #define MG_COAP_ERROR 0x10000
  • #define MG_COAP_FORMAT_ERROR (MG_COAP_ERROR | 0x20000)
  • #define MG_COAP_IGNORE (MG_COAP_ERROR | 0x40000)
  • #define MG_COAP_NOT_ENOUGH_DATA (MG_COAP_ERROR | 0x80000)
  • #define MG_COAP_NETWORK_ERROR (MG_COAP_ERROR | 0x100000)