2020-08-25 06:11:14 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package config;
|
|
|
|
|
|
|
|
import "lib/protocol/bep.proto";
|
|
|
|
import "lib/config/observed.proto";
|
|
|
|
|
|
|
|
import "ext.proto";
|
|
|
|
|
|
|
|
message DeviceConfiguration {
|
2021-02-04 20:10:41 +00:00
|
|
|
bytes device_id = 1 [(ext.goname) = "DeviceID", (ext.xml) = "id,attr", (ext.json) = "deviceID", (ext.device_id) = true, (ext.nodefault) = true];
|
2020-08-25 06:11:14 +00:00
|
|
|
string name = 2 [(ext.xml) = "name,attr,omitempty"];
|
|
|
|
repeated string addresses = 3 [(ext.xml) = "address,omitempty", (ext.default) = "dynamic"];
|
|
|
|
protocol.Compression compression = 4 [(ext.xml) = "compression,attr"];
|
|
|
|
string cert_name = 5 [(ext.xml) = "certName,attr,omitempty"];
|
|
|
|
bool introducer = 6 [(ext.xml) = "introducer,attr"];
|
|
|
|
bool skip_introduction_removals = 7 [(ext.xml) = "skipIntroductionRemovals,attr"];
|
2021-02-04 20:10:41 +00:00
|
|
|
bytes introduced_by = 8 [(ext.xml) = "introducedBy,attr", (ext.device_id) = true, (ext.nodefault) = true];
|
2020-08-25 06:11:14 +00:00
|
|
|
bool paused = 9;
|
|
|
|
repeated string allowed_networks = 10 [(ext.xml) = "allowedNetwork,omitempty"];
|
|
|
|
bool auto_accept_folders = 11;
|
|
|
|
int32 max_send_kbps = 12;
|
|
|
|
int32 max_recv_kbps = 13;
|
|
|
|
repeated ObservedFolder ignored_folders = 14;
|
2020-12-17 18:54:31 +00:00
|
|
|
repeated ObservedFolder pending_folders = 15 [deprecated = true];
|
2020-08-25 06:11:14 +00:00
|
|
|
int32 max_request_kib = 16 [(ext.goname) = "MaxRequestKiB", (ext.xml) = "maxRequestKiB", (ext.json) = "maxRequestKiB"];
|
2020-11-09 14:33:32 +00:00
|
|
|
bool untrusted = 17;
|
2020-11-10 08:24:11 +00:00
|
|
|
int32 remote_gui_port = 18 [(ext.goname) = "RemoteGUIPort", (ext.xml) = "remoteGUIPort", (ext.json) = "remoteGUIPort"];
|
2020-08-25 06:11:14 +00:00
|
|
|
}
|