mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-07-30 03:30:51 -04:00
* update protogen to strip unused part * add persistent storage support * fix coding style * update linter setting * update github integration
24 lines
718 B
Protocol Buffer
24 lines
718 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package v2ray.core.app.persistentstorage.filesystemstorage;
|
|
option csharp_namespace = "V2Ray.Core.App.Persistentstorage.Filesystemstorage";
|
|
option go_package = "github.com/v2fly/v2ray-core/v5/app/persistentstorage/filesystemstorage";
|
|
option java_package = "com.v2ray.core.persistentstorage.filesystemstorage";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/protoext/extensions.proto";
|
|
|
|
enum StateStorageRoot {
|
|
WorkDir = 0;
|
|
}
|
|
|
|
message Config {
|
|
option (v2ray.core.common.protoext.message_opt).type = "service";
|
|
option (v2ray.core.common.protoext.message_opt).short_name = "filesystemstorage";
|
|
|
|
StateStorageRoot state_storage_root = 1;
|
|
string instance_name = 4;
|
|
|
|
bool protojson = 5;
|
|
}
|