GetInstance() const
Returns a reference to the OpenThread Instance which owns the `Message`.
Free()
Frees this message buffer.
GetNext() const
Returns a pointer to the next message.
GetLength() const
Returns the number of bytes in the message.
SetLength()
Sets the number of bytes in the message.
GetBufferCount() const
Returns the number of buffers in the message.
GetOffset() const
Returns the byte offset within the message.
MoveOffset()
Moves the byte offset within the message.
SetOffset()
Sets the byte offset within the message.
GetType() const
Returns the type of the message.
SetType()
Sets the message type.
GetSubType() const
Returns the sub type of the message.
SetSubType()
Sets the message sub type.
IsSubTypeMle() const
Indicates whether or not the message is of MLE sub type.
IsMleCommand() const
Indicates whether or not the message is a given MLE command. It checks `IsSubTypeMle()` and then if `GetMleCommand()` is the same as `aMleCommand`.
GetMleCommand() const
Gets the MLE command type. Caller MUST ensure that message sub type is `kSubTypeMle` before calling this method. Otherwise the returned value is not meaningful.
SetMleCommand()
Set the MLE command type of message. Caller should also set the sub type to `kSubTypeMle`.
GetMulticastLoop() const
Checks whether this multicast message may be looped back.
SetMulticastLoop()
Sets whether multicast may be looped back.
GetPriority() const
Returns the message priority level.
SetPriority()
Sets the messages priority. If the message is already queued in a priority queue, changing the priority ensures to update the message in the associated queue.
PriorityToString()
Convert a `Priority` to a string.
PrependBytes()
Prepends bytes to the front of the message. On success, this method grows the message by @p aLength bytes.
Prepend()
Removes header bytes from the message at start of message. The caller MUST ensure that message contains the bytes to be removed, i.e. `aOffset` is smaller than the message length.
Removes header bytes from the message at start of message. The caller MUST ensure that message contains the bytes to be removed, i.e. `aOffset` is smaller than the message length.
Grows the message to make space for new header bytes at a given offset. Grows the message header (similar to `PrependBytes()`). The existing header bytes from start to `aOffset + aLength` are then copied backward to make room for the new header bytes. Note that this method does not change the bytes from @p aOffset up @p aLength (the new inserted header range). Caller can write to this range to update the bytes after successful return from this method.
Removes footer bytes from the end of the message. The caller should ensure the message contains the bytes to be removed, otherwise as many bytes as available will be removed.
AppendBytes()
Appends bytes to the end of the message. On success, this method grows the message by @p aLength bytes.
AppendBytesFromMessage()
Appends bytes read from another or potentially the same message to the end of the current message. On success, this method grows the message by @p aLength bytes.
AppendBytesFromMessage()
Appends bytes read from another or potentially the same message to the end of the current message. On success, this method grows the message by @p aLength bytes.
Append()
AppendData()
ReadBytes() const
Reads bytes from the message. The provided buffer @p aBuf MUST contain at least @p aLength bytes. If there are fewer bytes available in the message than the requested @p aLength, the available bytes are read and copied into @p aBuf. This method returns the actual number of bytes successfully read from the message and written into @p aBuf.
ReadBytes() const
Reads bytes from the message. The provided buffer @p aBuf MUST contain at least @p aLength bytes. If there are fewer bytes available in the message than the requested @p aLength, the available bytes are read and copied into @p aBuf. This method returns the actual number of bytes successfully read from the message and written into @p aBuf.
Read() const
Reads a given number of bytes from the message.
Read() const
Reads a given number of bytes from the message.
Read() const
Reads a given number of bytes from the message.
Read() const
Reads a given number of bytes from the message.
CompareBytes() const
Compares the bytes in the message at a given offset with a given byte array. If there are fewer bytes available in the message than the requested @p aLength, the comparison is treated as failure (returns FALSE).
CompareBytes() const
Compares the bytes in the message at a given offset with a given byte array. If there are fewer bytes available in the message than the requested @p aLength, the comparison is treated as failure (returns FALSE).
Compare() const
WriteBytes()
Writes bytes to the message. Will not resize the message. The given data to write (with @p aLength bytes) MUST fit within the existing message buffer (from the given offset @p aOffset up to the message's length).
WriteBytesFromMessage()
Writes bytes read from another or potentially the same message to the message at a given offset. Will not resize the message. The bytes to write (with @p aLength) MUST fit within the existing message buffer (from the given @p aWriteOffset up to the message's length). Can be used to copy bytes within the same message in either direction, i.e., copy forward where `aWriteOffset > aReadOffset` or copy backward where `aWriteOffset < aReadOffset`.
Write()
WriteData()
Clone() const
Creates a copy of the 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 the 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.
GetDatagramTag() const
Returns the datagram tag used for 6LoWPAN fragmentation or the identification used for IPv6 fragmentation.
SetDatagramTag()
Sets the datagram tag used for 6LoWPAN fragmentation.
GetIndirectTxChildMask()
Gets the indirect transmission `ChildMask` associated with this `Message`. The `ChildMask` indicates the set of children for which this message is scheduled for indirect transmission.
GetIndirectTxChildMask() const
Gets the indirect transmission `ChildMask` associated with this `Message`. The `ChildMask` indicates the set of children for which this message is scheduled for indirect transmission.
GetMeshDest() const
Returns the RLOC16 of the mesh destination.
SetMeshDest()
Sets the RLOC16 of the mesh destination.
GetPanId() const
Returns the IEEE 802.15.4 Source or Destination PAN ID. For a message received over the Thread radio, specifies the Source PAN ID when present in MAC header, otherwise specifies the Destination PAN ID. For a message to be sent over the Thread radio, this is set and used for MLE Discover Request or Response messages.
SetPanId()
Sets the IEEE 802.15.4 Destination PAN ID.
IsDstPanIdBroadcast() const
Indicates whether the Destination PAN ID is broadcast. This is applicable for messages received over Thread radio.
GetChannel() const
Returns the IEEE 802.15.4 Channel to use for transmission.
SetChannel()
Sets the IEEE 802.15.4 Channel to use for transmission.
GetTimestamp() const
Returns the message timestamp.
SetTimestamp()
Sets the message timestamp to a given time.
SetTimestampToNow()
Sets the message timestamp to the current time.
IsDirectTransmission() const
Returns whether or not message forwarding is scheduled for direct transmission.
ClearDirectTransmission()
Unschedules forwarding using direct transmission.
SetDirectTransmission()
Schedules forwarding using direct transmission.
GetTxSuccess() const
Indicates whether the direct transmission of message was successful.
SetTxSuccess()
Sets whether the direct transmission of message was successful.
GetDoNotEvict() const
Indicates whether the message may be evicted.
SetDoNotEvict()
Sets whether the message may be evicted.
IsResolvingAddress() const
Indicates whether the message is waiting for an address query resolution.
SetResolvingAddress()
Sets whether the message is waiting for an address query resolution.
IsLoopbackToHostAllowed() const
Indicates whether the message is allowed to be looped back to host.
SetLoopbackToHostAllowed()
Sets whether or not allow the message to be looped back to host.
GetOrigin() const
Gets the message origin.
SetOrigin()
Sets the message origin.
IsOriginThreadNetif() const
Indicates whether or not the message origin is Thread Netif.
IsOriginHostTrusted() const
Indicates whether or not the message origin is a trusted source on host.
IsOriginHostUntrusted() const
Indicates whether or not the message origin is an untrusted source on host.
IsLinkSecurityEnabled() const
Indicates whether or not link security is enabled for the message.
SetLinkSecurityEnabled()
Sets whether or not link security is enabled for the message.
Updates the average RSS (Received Signal Strength) associated with the message by adding the given RSS value to the average. Note that a message can be composed of multiple 802.15.4 data frame fragments each received with a different signal strength.
Returns the average RSS (Received Signal Strength) associated with the message.
Returns a const reference to RssAverager of the message.
AddLqi()
Updates the average LQI (Link Quality Indicator) associated with the message. The given LQI value would be added to the average. Note that a message can be composed of multiple 802.15.4 frame fragments each received with a different signal strength.
GetAverageLqi() const
Returns the average LQI (Link Quality Indicator) associated with the message.
GetPsduCount() const
Returns the count of frames counted so far.
GetLqiAverager() const
Returns a const reference to LqiAverager of the message.
GetLinkInfo() const
Retrieves `ThreadLinkInfo` from the message if received over Thread radio with origin `kOriginThreadNetif`. @pram[out] aLinkInfo A reference to a `ThreadLinkInfo` to populate.
UpdateLinkInfoFrom()
Sets the message's link info properties (PAN ID, link security, RSS) from a given `ThreadLinkInfo`.
GetMessageQueue() const
Returns a pointer to the message queue (if any) where this message is queued.
GetPriorityQueue() const
Returns a pointer to the priority message queue (if any) where this message is queued.
IsTimeSync() const
Indicates whether or not the message is also used for time sync purpose. When OPENTHREAD_CONFIG_TIME_SYNC_ENABLE is 0, this method always return false.
GetReserved() const
SetReserved()
GetFirstChunk() const
GetNextChunk() const
GetFirstChunk()
GetNextChunk()
GetMessagePool() const
SetMessagePool()
IsInAQueue() const
SetMessageQueue()
SetPriorityQueue()
SetLqiAverager()
Next()
Next() const
Prev()
NextOf()
NextOf()
ResizeMessage()