mirror of
https://github.com/meshtastic/protobufs.git
synced 2026-04-20 22:13:55 +00:00
add nodeinfo bool/bitfield for is_manually_validated
This commit is contained in:
parent
d8b709aa5d
commit
2b59c7f519
2 changed files with 13 additions and 0 deletions
|
|
@ -164,6 +164,12 @@ message NodeInfoLite {
|
|||
* Last byte of the node number of the node that should be used as the next hop to reach this node.
|
||||
*/
|
||||
uint32 next_hop = 12;
|
||||
|
||||
/*
|
||||
* Bitfield for storing booleans.
|
||||
* LSB 0 is_manually_validated
|
||||
*/
|
||||
uint32 bitfield = 13;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -1459,6 +1459,13 @@ message NodeInfo {
|
|||
* Persists between NodeDB internal clean ups
|
||||
*/
|
||||
bool is_ignored = 11;
|
||||
|
||||
/*
|
||||
* True if node public key has been validated.
|
||||
* Persists between NodeDB internal clean ups
|
||||
* LSB 0 of the bitfield
|
||||
*/
|
||||
bool is_manually_validated = 12;
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue