Merge pull request #811 from andrewdavidmackenzie/master

Describe further the "to" field in MeshPacket
This commit is contained in:
Ben Meadors 2025-11-18 18:45:36 -06:00 committed by GitHub
commit 7eb3258fa0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1376,6 +1376,10 @@ message MeshPacket {
/*
* The (immediate) destination for this packet
* If the value is 4,294,967,295 (maximum value of an unsigned 32bit integer), this indicates that the packet was
* not destined for a specific node, but for a channel as indicated by the value of `channel` below.
* If the value is another, this indicates that the packet was destined for a specific
* node (i.e. a kind of "Direct Message" to this node) and not broadcast on a channel.
*/
fixed32 to = 2;