intro.md 795 Bytes
Newer Older
1
---
2
title: "CoAP API reference"
3 4
symbol_kind: "intro"
decl_name: "coap.h"
5
items:
6 7 8 9 10 11 12 13 14
  - { name: mg_set_protocol_coap.md }
  - { name: mg_coap_add_option.md }
  - { name: mg_coap_free_options.md }
  - { name: mg_coap_send_message.md }
  - { name: mg_coap_send_ack.md }
  - { name: mg_coap_parse.md }
  - { name: mg_coap_compose.md }
  - { name: struct_mg_coap_option.md }
  - { name: struct_mg_coap_message.md }
15 16 17 18 19 20 21 22 23 24 25 26
---

CoAP message format:

```
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
|Ver| T | TKL | Code | Message ID | Token (if any, TKL bytes) ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
| Options (if any) ...            |1 1 1 1 1 1 1 1| Payload (if any) ...
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
```