Files
v2fly/app/persistentstorage/filesystemstorage/config.proto
T
Xiaokang Wang (Shelikhoo)andGitHub 78cd513b82 Add Persistent Storage Support to V2Ray (#3300)
* update protogen to strip unused part

* add persistent storage support

* fix coding style

* update linter setting

* update github integration
2025-02-05 20:36:40 +00:00

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;
}