2019-05-24 19:38:29 -05:00
|
|
|
syntax = "proto3";
|
2024-01-17 16:47:33 -06:00
|
|
|
package guipb;
|
2019-05-24 19:38:29 -05:00
|
|
|
|
2019-05-25 04:46:11 -05:00
|
|
|
import "account.proto";
|
|
|
|
|
2019-05-24 19:38:29 -05:00
|
|
|
message Config {
|
2019-05-25 02:11:10 -05:00
|
|
|
string USER = 1;
|
|
|
|
int32 width = 2;
|
|
|
|
int32 height = 3;
|
|
|
|
string hostname = 4;
|
2019-05-28 19:23:46 -05:00
|
|
|
bool debug = 5;
|
2019-05-25 02:11:10 -05:00
|
|
|
bool debugtable = 6;
|
|
|
|
string filename = 7;
|
2019-05-24 20:31:05 -05:00
|
|
|
repeated Account accounts = 8;
|
2019-05-25 02:11:10 -05:00
|
|
|
int32 counter = 9;
|
|
|
|
int32 errors = 10;
|
|
|
|
int32 crashes = 11;
|
|
|
|
string crash = 12;
|
2019-06-02 17:48:39 -05:00
|
|
|
string IPv6 = 13;
|
2019-06-05 03:33:59 -05:00
|
|
|
|
|
|
|
// variables relating to the build
|
|
|
|
bool dirty = 14; // if the build was 'dirty'
|
|
|
|
string gitref = 15; // git rev-list -1 HEAD
|
|
|
|
string version = 16; // the VERSION file
|
2019-06-06 22:43:17 -05:00
|
|
|
int64 builddate = 17; // the build time in seconds since epoch
|
2019-06-05 03:33:59 -05:00
|
|
|
string goversion = 18; // the version of go used to build
|
2019-05-24 19:38:29 -05:00
|
|
|
}
|