mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-10 15:20:56 +00:00
14 lines
345 B
Protocol Buffer
14 lines
345 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package discover;
|
|
|
|
import "repos/protobuf/gogoproto/gogo.proto";
|
|
|
|
import "ext.proto";
|
|
|
|
message Announce {
|
|
bytes id = 1 [(ext.goname) = "ID", (ext.device_id) = true, (gogoproto.nullable) = false];
|
|
repeated string addresses = 2;
|
|
int64 instance_id = 3 [(ext.goname) = "InstanceID"];
|
|
}
|