syncthing/proto/lib/config/blockpullorder.proto

14 lines
268 B
Protocol Buffer

syntax = "proto3";
package config;
import "repos/protobuf/gogoproto/gogo.proto";
enum BlockPullOrder {
option (gogoproto.goproto_enum_stringer) = false;
BLOCK_PULL_ORDER_STANDARD = 0;
BLOCK_PULL_ORDER_RANDOM = 1;
BLOCK_PULL_ORDER_IN_ORDER = 2;
}