Class MeshFrame
A mesh packet: its addressing, its payload, and the bytes to transmit.
public sealed class MeshFrame
- Inheritance
-
MeshFrame
- Inherited Members
Properties
Broadcast
Whether the frame is addressed to every node.
public bool Broadcast { get; }
Property Value
Bytes
The whole frame as it goes on the air.
public byte[] Bytes { get; }
Property Value
- byte[]
Dst
The address the frame is addressed to.
public uint Dst { get; }
Property Value
HopLimit
How many further relays the frame may take.
public byte HopLimit { get; }
Property Value
Id
The sequence number identifying this packet from this source.
public ushort Id { get; }
Property Value
Payload
The payload the frame carries.
public byte[] Payload { get; }
Property Value
- byte[]
Src
The address of the node the frame came from.
public uint Src { get; }
Property Value
Version
The protocol version the frame declares.
public byte Version { get; }