syntax = "proto3"; option java_package = "com.geeksville.mesh"; option java_outer_classname = "Admin"; option optimize_for = LITE_RUNTIME; import "mesh.proto"; /* This message is handled by the Admin plugin and is responsible for all settings/channel read/write operations. This message is used to do settings operations to both remote AND local nodes. (Prior to 1.2 these operations were done via special ToRadio operations) FIXME - move the radioconfig/user/channel READ operations into AdminMessage as well */ message AdminMessage { oneof variant { /* * set the radio provisioning for this node */ RadioConfig set_radio = 1; /* * Set the owner for this node */ User set_owner = 2; /* * Set channels (using the new API). A special channel is the "primary channel". The other records are secondary channels. * Note: only one channel can be marked as primary. If the client sets a particular channel to be primary, the previous channel will be set to SECONDARY automatically */ Channel set_channel = 3; /* * Send the current RadioConfig in the response for this message */ bool get_radio = 4; /* * Send the specified channel in the response for this message */ uint32 get_channel = 5; } }