Skip to content

Commit 62f8677

Browse files
authored
Merge pull request #667 from meshtastic/attended-state
Add is_unmessagable to User
2 parents 3b57a9c + af475e6 commit 62f8677

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

meshtastic/deviceonly.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,11 @@ message UserLite {
9494
* This is sent out to other nodes on the mesh to allow them to compute a shared secret key.
9595
*/
9696
bytes public_key = 7;
97+
98+
/*
99+
* Whether or not the node can be messaged
100+
*/
101+
bool is_unmessagable = 9;
97102
}
98103

99104
message NodeInfoLite {

meshtastic/mesh.proto

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,11 @@ message User {
806806
* This is sent out to other nodes on the mesh to allow them to compute a shared secret key.
807807
*/
808808
bytes public_key = 8;
809+
810+
/*
811+
* Whether or not the node can be messaged
812+
*/
813+
bool is_unmessagable = 9;
809814
}
810815

811816
/*

0 commit comments

Comments
 (0)