mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
Merge pull request #667 from meshtastic/attended-state
Add is_unmessagable to User
This commit is contained in:
commit
62f86771ef
3 changed files with 11 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
.DS_Store
|
||||
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -806,6 +806,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;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue