Init()
Initializes the CoAP header.
Init()
Initializes the CoAP header.
Init()
Initializes the CoAP header.
InitAsPost()
Initializes the CoAP header as `kCodePost` with a given URI Path with its type determined from a given destination IPv6 address.
Finish()
Writes header to the message. This must be called before sending the message. Also checks whether the payload marker is set (`SetPayloadMarker()`) but the message contains no payload, and if so it removes the payload marker from the message.
GetVersion() const
Returns the Version value.
SetVersion()
Sets the Version value.
GetType() const
Returns the Type value.
SetType()
Sets the Type value.
GetCode() const
Returns the Code value.
SetCode()
Sets the Code value.
CodeToString() const
Returns the CoAP Code as human readable string. @ returns The CoAP Code as string.
GetMessageId() const
Returns the Message ID value.
SetMessageId()
Sets the Message ID value.
GetTokenLength() const
Returns the Token length.
GetToken() const
Returns a pointer to the Token value.
SetToken()
Sets the Token value and length.
SetTokenFromMessage()
Sets the Token value and length by copying it from another given message.
GenerateRandomToken()
Sets the Token length and randomizes its value.
IsTokenEqual() const
Checks if Tokens in two CoAP headers are equal.
AppendOption()
Appends a CoAP option.
AppendOptionFromMessage()
Appends a CoAP option reading Option value from another or potentially the same message.
AppendUintOption()
Appends an unsigned integer CoAP option as specified in RFC-7252 section-3.2.
AppendStringOption()
Appends a string CoAP option.
AppendObserveOption()
Appends an Observe option.
AppendUriPathOptions()
Appends a Uri-Path option.
ReadUriPathOptions() const
Reads the Uri-Path options and constructs the URI path in the buffer referenced by @p `aUriPath`.
AppendUriQueryOptions()
Appends a Uri-Query option.
AppendBlockOption()
AppendProxyUriOption()
Appends a Proxy-Uri option.
AppendContentFormatOption()
Appends a Content-Format option.
AppendMaxAgeOption()
Appends a Max-Age option.
AppendUriQueryOption()
Appends a single Uri-Query option.
GetUriPath() const
Reads and reassembles the URI path string and fills it into @p aUriPath.
SetPayloadMarker()
Adds Payload Marker indicating beginning of the payload to the CoAP header. It also set offset to the start of payload.
GetOptionStart() const
Returns the offset of the first CoAP option.
Parses CoAP header and moves offset end of CoAP header.
Sets a default response header based on request header.
IsEmpty() const
Checks if a header is an empty message header.
IsRequest() const
Checks if a header is a request header.
IsGetRequest() const
Indicates whether or not the CoAP code in header is "Get" request.
IsPostRequest() const
Indicates whether or not the CoAP code in header is "Post" request.
IsPutRequest() const
Indicates whether or not the CoAP code in header is "Put" request.
IsDeleteRequest() const
Indicates whether or not the CoAP code in header is "Delete" request.
IsResponse() const
Checks if a header is a response header.
IsConfirmable() const
Checks if a header is a CON message header.
IsNonConfirmable() const
Checks if a header is a NON message header.
IsAck() const
Checks if a header is a ACK message header.
IsReset() const
Checks if a header is a RST message header.
IsConfirmablePostRequest() const
Indicates whether or not the header is a confirmable Post request (i.e, `kTypeConfirmable` with `kCodePost`).
IsNonConfirmablePostRequest() const
Indicates whether or not the header is a non-confirmable Post request (i.e, `kTypeNonConfirmable` with `kCodePost`).
Clone() const
Creates a copy of this CoAP message. It allocates the new message from the same message pool as the original one and copies @p aLength octets of the payload. The `Type`, `SubType`, `LinkSecurity`, `Offset`, `InterfaceId`, and `Priority` fields on the cloned message are also copied from the original one.
Clone() const
Creates a copy of this CoAP message. It allocates the new message from the same message pool as the original one and copies @p aLength octets of the payload. The `Type`, `SubType`, `LinkSecurity`, `Offset`, `InterfaceId`, and `Priority` fields on the cloned message are also copied from the original one.
GetHelpDataReserved()
Returns the minimal reserved bytes required for CoAP message.
GetNextCoapMessage()
Returns a pointer to the next message after this as a `Coap::Message`. Should be used when the message is in a `Coap::MessageQueue` (i.e., a queue containing only CoAP messages).
GetNextCoapMessage() const
Returns a pointer to the next message after this as a `Coap::Message`. Should be used when the message is in a `Coap::MessageQueue` (i.e., a queue containing only CoAP messages).
GetHelpData() const
GetHelpData()
GetToken()
SetTokenLength()
WriteExtendedOptionField()
AppendBlockOption()