diff --git a/meshtastic/deviceonly.proto b/meshtastic/deviceonly.proto index ea6ef25..a988478 100644 --- a/meshtastic/deviceonly.proto +++ b/meshtastic/deviceonly.proto @@ -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 is attended by a User + */ + optional bool is_attended = 8; } message NodeInfoLite { diff --git a/meshtastic/mesh.proto b/meshtastic/mesh.proto index 2e15118..3fb0840 100644 --- a/meshtastic/mesh.proto +++ b/meshtastic/mesh.proto @@ -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 is attended by a User + */ + optional bool is_attended = 9; } /*