all: Use protobuf to generate config structs (fixes #6734) (#6900)

This commit is contained in:
Audrius Butkevicius
2020-08-25 08:11:14 +02:00
committed by GitHub
parent 5b953033c7
commit d507d932b8
84 changed files with 3807 additions and 542 deletions
+12
View File
@@ -0,0 +1,12 @@
syntax = "proto3";
package fs;
enum CopyRangeMethod {
COPY_RANGE_METHOD_STANDARD = 0;
COPY_RANGE_METHOD_IOCTL = 1;
COPY_RANGE_METHOD_COPY_FILE_RANGE = 2;
COPY_RANGE_METHOD_SEND_FILE = 3;
COPY_RANGE_METHOD_DUPLICATE_EXTENTS = 4;
COPY_RANGE_METHOD_ALL_WITH_FALLBACK = 5;
}
+8
View File
@@ -0,0 +1,8 @@
syntax = "proto3";
package fs;
enum FilesystemType {
FILESYSTEM_TYPE_BASIC = 0;
FILESYSTEM_TYPE_FAKE = 1;
}