mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-06 05:17:49 +00:00
14 lines
268 B
Protocol Buffer
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;
|
|
}
|