1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 19:44:32 -04:00
v2fly/common/loader/type.proto

14 lines
398 B
Protocol Buffer
Raw Normal View History

2016-10-16 08:22:21 -04: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-17 18:09:49 -04:00
// Serialized proto message along with its type name.
2016-10-16 08:22:21 -04:00
message TypedSettings {
2016-10-17 18:09:49 -04:00
// The name of the message type, retrieved from protobuf API.
2016-10-16 08:22:21 -04:00
string type = 1;
2016-10-17 18:09:49 -04:00
// Serialized proto message.
2016-10-16 08:22:21 -04:00
bytes settings = 2;
}