Xray-core/common/serial/typed_message.proto

16 lines
473 B
Protocol Buffer
Raw Normal View History

2020-11-25 13:01:53 +02:00
syntax = "proto3";
package xray.common.serial;
option csharp_namespace = "Xray.Common.Serial";
2020-12-04 03:36:16 +02:00
option go_package = "github.com/xtls/xray-core/common/serial";
2020-11-25 13:01:53 +02:00
option java_package = "com.xray.common.serial";
option java_multiple_files = true;
// TypedMessage is a serialized proto message along with its type name.
message TypedMessage {
// The name of the message type, retrieved from protobuf API.
string type = 1;
// Serialized proto message.
bytes value = 2;
}