Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
5 changes: 5 additions & 0 deletions meshtastic/deviceonly.proto
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ message UserLite {
* This is sent out to other nodes on the mesh to allow them to compute a shared secret key.
*/
bytes public_key = 7;

/*
* Whether or not the node can be messaged
*/
bool is_unmessagable = 9;
}

message NodeInfoLite {
Expand Down
5 changes: 5 additions & 0 deletions meshtastic/mesh.proto
Original file line number Diff line number Diff line change
Expand Up @@ -781,6 +781,11 @@ message User {
* This is sent out to other nodes on the mesh to allow them to compute a shared secret key.
*/
bytes public_key = 8;

/*
* Whether or not the node can be messaged
*/
bool is_unmessagable = 9;
}

/*
Expand Down