Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/generated/meshtastic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5111,7 +5111,11 @@ pub struct MeshPacket {
#[prost(fixed32, tag = "1")]
pub from: u32,
///
/// The (immediate) destination for this packet
/// The (immediate) destination for this packet.
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not the right place for it. As the name suggests, this is a generated file. This will get overwritten when we update protobuf and regenerate this file.

Please post a PR to the protobuf repository:
https://github.com/meshtastic/protobufs/blob/7654db2e2d1834aebde40090a9b74162ad1048ae/meshtastic/mesh.proto#L1373

/// If the value is u32::MAX, 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 not u32MAX, 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.
#[prost(fixed32, tag = "2")]
pub to: u32,
///
Expand Down