What is the size of CoAP packet?

后端 未结 1 1959
小蘑菇
小蘑菇 2021-02-06 04:35

I\'m new for this technology, can somebody help me to know about some doubt?

Q-1. What is the size of CoAP packet?
(I know there is 4 byte fixed hea

1条回答
  •  隐瞒了意图╮
    2021-02-06 05:30

    1. It Depends:
      • Core CoAP messages must be small enough to fit into their link-layer packets (~ 64 KiB for UDP) but, in any case the RFC states that:
        • it SHOULD fit within a single IP packet to avoid IP fragmentation (MTU of 1280 for IPv6). If nothing is known about the size of the headers, good upper bounds are 1152 bytes for the message size and 1024 bytes for the payload size;
        • or less to avoid adaptation layer fragmentation (60-80 bytes for 6LoWPAN networks);
      • if you need to transfer larger payloads, this IETF draft extends core CoAP with new options for transferring multiple blocks of information from a resource representation in multiple request-response pair (so you can transfer more than 64KiB per message).
    2. I never used MQTT, in any case CoAP is connectionless, requests and responses are exchanged asynchronously over UDP or DTLS. I suppose that you are looking for the observe functionality: it enables CoAP clients to "subscribe" to resources and servers to send updates to subscribed clients over a period of time.

    3. There is an IETF draft describing CoAP over TCP, but I don't know how it interacts with the observe functionality: usually It follows a best-effort approach, it just happens that the client is considered no longer interested in the resource and is removed by the server from the list of observers.

    4. The observe stops when the server thinks that the client is no longer interested in the resource or when the client ask to unsubscribe from the resource.

    5. There is a well-known relative URI "/.well-known/core". It is defined as a default entry point for requesting the list of links about resources hosted by a server. Here for more infos.

    6. Look at 5.

    0 讨论(0)
提交回复
热议问题