1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-10-15 05:24:02 -04:00
Files
v2fly/common/loader/type.proto

14 lines
398 B
Protocol Buffer
Raw Normal View History

2016-10-16 14:22:21 +02:00
syntax = "proto3";
package v2ray.core.common.loader;
option go_package = "loader";
option java_package = "com.v2ray.core.common.loader";
option java_outer_classname = "TypeProto";
2016-10-18 00:09:49 +02:00
// Serialized proto message along with its type name.
2016-10-16 14:22:21 +02:00
message TypedSettings {
2016-10-18 00:09:49 +02:00
// The name of the message type, retrieved from protobuf API.
2016-10-16 14:22:21 +02:00
string type = 1;
2016-10-18 00:09:49 +02:00
// Serialized proto message.
2016-10-16 14:22:21 +02:00
bytes settings = 2;
}