|
@@ -23,58 +23,6 @@ const (
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
)
|
|
|
|
|
|
-type AllocationStrategy_Type int32
|
|
|
|
-
|
|
|
|
-const (
|
|
|
|
- // Always allocate all connection handlers.
|
|
|
|
- AllocationStrategy_Always AllocationStrategy_Type = 0
|
|
|
|
- // Randomly allocate specific range of handlers.
|
|
|
|
- AllocationStrategy_Random AllocationStrategy_Type = 1
|
|
|
|
- // External. Not supported yet.
|
|
|
|
- AllocationStrategy_External AllocationStrategy_Type = 2
|
|
|
|
-)
|
|
|
|
-
|
|
|
|
-// Enum value maps for AllocationStrategy_Type.
|
|
|
|
-var (
|
|
|
|
- AllocationStrategy_Type_name = map[int32]string{
|
|
|
|
- 0: "Always",
|
|
|
|
- 1: "Random",
|
|
|
|
- 2: "External",
|
|
|
|
- }
|
|
|
|
- AllocationStrategy_Type_value = map[string]int32{
|
|
|
|
- "Always": 0,
|
|
|
|
- "Random": 1,
|
|
|
|
- "External": 2,
|
|
|
|
- }
|
|
|
|
-)
|
|
|
|
-
|
|
|
|
-func (x AllocationStrategy_Type) Enum() *AllocationStrategy_Type {
|
|
|
|
- p := new(AllocationStrategy_Type)
|
|
|
|
- *p = x
|
|
|
|
- return p
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x AllocationStrategy_Type) String() string {
|
|
|
|
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (AllocationStrategy_Type) Descriptor() protoreflect.EnumDescriptor {
|
|
|
|
- return file_app_proxyman_config_proto_enumTypes[0].Descriptor()
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (AllocationStrategy_Type) Type() protoreflect.EnumType {
|
|
|
|
- return &file_app_proxyman_config_proto_enumTypes[0]
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x AllocationStrategy_Type) Number() protoreflect.EnumNumber {
|
|
|
|
- return protoreflect.EnumNumber(x)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-// Deprecated: Use AllocationStrategy_Type.Descriptor instead.
|
|
|
|
-func (AllocationStrategy_Type) EnumDescriptor() ([]byte, []int) {
|
|
|
|
- return file_app_proxyman_config_proto_rawDescGZIP(), []int{1, 0}
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
type InboundConfig struct {
|
|
type InboundConfig struct {
|
|
state protoimpl.MessageState
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
sizeCache protoimpl.SizeCache
|
|
@@ -111,71 +59,6 @@ func (*InboundConfig) Descriptor() ([]byte, []int) {
|
|
return file_app_proxyman_config_proto_rawDescGZIP(), []int{0}
|
|
return file_app_proxyman_config_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
}
|
|
|
|
|
|
-type AllocationStrategy struct {
|
|
|
|
- state protoimpl.MessageState
|
|
|
|
- sizeCache protoimpl.SizeCache
|
|
|
|
- unknownFields protoimpl.UnknownFields
|
|
|
|
-
|
|
|
|
- Type AllocationStrategy_Type `protobuf:"varint,1,opt,name=type,proto3,enum=xray.app.proxyman.AllocationStrategy_Type" json:"type,omitempty"`
|
|
|
|
- // Number of handlers (ports) running in parallel.
|
|
|
|
- // Default value is 3 if unset.
|
|
|
|
- Concurrency *AllocationStrategy_AllocationStrategyConcurrency `protobuf:"bytes,2,opt,name=concurrency,proto3" json:"concurrency,omitempty"`
|
|
|
|
- // Number of minutes before a handler is regenerated.
|
|
|
|
- // Default value is 5 if unset.
|
|
|
|
- Refresh *AllocationStrategy_AllocationStrategyRefresh `protobuf:"bytes,3,opt,name=refresh,proto3" json:"refresh,omitempty"`
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy) Reset() {
|
|
|
|
- *x = AllocationStrategy{}
|
|
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[1]
|
|
|
|
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
- ms.StoreMessageInfo(mi)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy) String() string {
|
|
|
|
- return protoimpl.X.MessageStringOf(x)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (*AllocationStrategy) ProtoMessage() {}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy) ProtoReflect() protoreflect.Message {
|
|
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[1]
|
|
|
|
- if x != nil {
|
|
|
|
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
- if ms.LoadMessageInfo() == nil {
|
|
|
|
- ms.StoreMessageInfo(mi)
|
|
|
|
- }
|
|
|
|
- return ms
|
|
|
|
- }
|
|
|
|
- return mi.MessageOf(x)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-// Deprecated: Use AllocationStrategy.ProtoReflect.Descriptor instead.
|
|
|
|
-func (*AllocationStrategy) Descriptor() ([]byte, []int) {
|
|
|
|
- return file_app_proxyman_config_proto_rawDescGZIP(), []int{1}
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy) GetType() AllocationStrategy_Type {
|
|
|
|
- if x != nil {
|
|
|
|
- return x.Type
|
|
|
|
- }
|
|
|
|
- return AllocationStrategy_Always
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy) GetConcurrency() *AllocationStrategy_AllocationStrategyConcurrency {
|
|
|
|
- if x != nil {
|
|
|
|
- return x.Concurrency
|
|
|
|
- }
|
|
|
|
- return nil
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy) GetRefresh() *AllocationStrategy_AllocationStrategyRefresh {
|
|
|
|
- if x != nil {
|
|
|
|
- return x.Refresh
|
|
|
|
- }
|
|
|
|
- return nil
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
type SniffingConfig struct {
|
|
type SniffingConfig struct {
|
|
state protoimpl.MessageState
|
|
state protoimpl.MessageState
|
|
sizeCache protoimpl.SizeCache
|
|
sizeCache protoimpl.SizeCache
|
|
@@ -196,7 +79,7 @@ type SniffingConfig struct {
|
|
|
|
|
|
func (x *SniffingConfig) Reset() {
|
|
func (x *SniffingConfig) Reset() {
|
|
*x = SniffingConfig{}
|
|
*x = SniffingConfig{}
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[2]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -208,7 +91,7 @@ func (x *SniffingConfig) String() string {
|
|
func (*SniffingConfig) ProtoMessage() {}
|
|
func (*SniffingConfig) ProtoMessage() {}
|
|
|
|
|
|
func (x *SniffingConfig) ProtoReflect() protoreflect.Message {
|
|
func (x *SniffingConfig) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[2]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[1]
|
|
if x != nil {
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -221,7 +104,7 @@ func (x *SniffingConfig) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use SniffingConfig.ProtoReflect.Descriptor instead.
|
|
// Deprecated: Use SniffingConfig.ProtoReflect.Descriptor instead.
|
|
func (*SniffingConfig) Descriptor() ([]byte, []int) {
|
|
func (*SniffingConfig) Descriptor() ([]byte, []int) {
|
|
- return file_app_proxyman_config_proto_rawDescGZIP(), []int{2}
|
|
|
|
|
|
+ return file_app_proxyman_config_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
}
|
|
|
|
|
|
func (x *SniffingConfig) GetEnabled() bool {
|
|
func (x *SniffingConfig) GetEnabled() bool {
|
|
@@ -268,15 +151,14 @@ type ReceiverConfig struct {
|
|
PortList *net.PortList `protobuf:"bytes,1,opt,name=port_list,json=portList,proto3" json:"port_list,omitempty"`
|
|
PortList *net.PortList `protobuf:"bytes,1,opt,name=port_list,json=portList,proto3" json:"port_list,omitempty"`
|
|
// Listen specifies the IP address that the Receiver should listen on.
|
|
// Listen specifies the IP address that the Receiver should listen on.
|
|
Listen *net.IPOrDomain `protobuf:"bytes,2,opt,name=listen,proto3" json:"listen,omitempty"`
|
|
Listen *net.IPOrDomain `protobuf:"bytes,2,opt,name=listen,proto3" json:"listen,omitempty"`
|
|
- AllocationStrategy *AllocationStrategy `protobuf:"bytes,3,opt,name=allocation_strategy,json=allocationStrategy,proto3" json:"allocation_strategy,omitempty"`
|
|
|
|
- StreamSettings *internet.StreamConfig `protobuf:"bytes,4,opt,name=stream_settings,json=streamSettings,proto3" json:"stream_settings,omitempty"`
|
|
|
|
- ReceiveOriginalDestination bool `protobuf:"varint,5,opt,name=receive_original_destination,json=receiveOriginalDestination,proto3" json:"receive_original_destination,omitempty"`
|
|
|
|
- SniffingSettings *SniffingConfig `protobuf:"bytes,7,opt,name=sniffing_settings,json=sniffingSettings,proto3" json:"sniffing_settings,omitempty"`
|
|
|
|
|
|
+ StreamSettings *internet.StreamConfig `protobuf:"bytes,3,opt,name=stream_settings,json=streamSettings,proto3" json:"stream_settings,omitempty"`
|
|
|
|
+ ReceiveOriginalDestination bool `protobuf:"varint,4,opt,name=receive_original_destination,json=receiveOriginalDestination,proto3" json:"receive_original_destination,omitempty"`
|
|
|
|
+ SniffingSettings *SniffingConfig `protobuf:"bytes,6,opt,name=sniffing_settings,json=sniffingSettings,proto3" json:"sniffing_settings,omitempty"`
|
|
}
|
|
}
|
|
|
|
|
|
func (x *ReceiverConfig) Reset() {
|
|
func (x *ReceiverConfig) Reset() {
|
|
*x = ReceiverConfig{}
|
|
*x = ReceiverConfig{}
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[3]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -288,7 +170,7 @@ func (x *ReceiverConfig) String() string {
|
|
func (*ReceiverConfig) ProtoMessage() {}
|
|
func (*ReceiverConfig) ProtoMessage() {}
|
|
|
|
|
|
func (x *ReceiverConfig) ProtoReflect() protoreflect.Message {
|
|
func (x *ReceiverConfig) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[3]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[2]
|
|
if x != nil {
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -301,7 +183,7 @@ func (x *ReceiverConfig) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use ReceiverConfig.ProtoReflect.Descriptor instead.
|
|
// Deprecated: Use ReceiverConfig.ProtoReflect.Descriptor instead.
|
|
func (*ReceiverConfig) Descriptor() ([]byte, []int) {
|
|
func (*ReceiverConfig) Descriptor() ([]byte, []int) {
|
|
- return file_app_proxyman_config_proto_rawDescGZIP(), []int{3}
|
|
|
|
|
|
+ return file_app_proxyman_config_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
}
|
|
|
|
|
|
func (x *ReceiverConfig) GetPortList() *net.PortList {
|
|
func (x *ReceiverConfig) GetPortList() *net.PortList {
|
|
@@ -318,13 +200,6 @@ func (x *ReceiverConfig) GetListen() *net.IPOrDomain {
|
|
return nil
|
|
return nil
|
|
}
|
|
}
|
|
|
|
|
|
-func (x *ReceiverConfig) GetAllocationStrategy() *AllocationStrategy {
|
|
|
|
- if x != nil {
|
|
|
|
- return x.AllocationStrategy
|
|
|
|
- }
|
|
|
|
- return nil
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
func (x *ReceiverConfig) GetStreamSettings() *internet.StreamConfig {
|
|
func (x *ReceiverConfig) GetStreamSettings() *internet.StreamConfig {
|
|
if x != nil {
|
|
if x != nil {
|
|
return x.StreamSettings
|
|
return x.StreamSettings
|
|
@@ -358,7 +233,7 @@ type InboundHandlerConfig struct {
|
|
|
|
|
|
func (x *InboundHandlerConfig) Reset() {
|
|
func (x *InboundHandlerConfig) Reset() {
|
|
*x = InboundHandlerConfig{}
|
|
*x = InboundHandlerConfig{}
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[4]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[3]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -370,7 +245,7 @@ func (x *InboundHandlerConfig) String() string {
|
|
func (*InboundHandlerConfig) ProtoMessage() {}
|
|
func (*InboundHandlerConfig) ProtoMessage() {}
|
|
|
|
|
|
func (x *InboundHandlerConfig) ProtoReflect() protoreflect.Message {
|
|
func (x *InboundHandlerConfig) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[4]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[3]
|
|
if x != nil {
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -383,7 +258,7 @@ func (x *InboundHandlerConfig) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use InboundHandlerConfig.ProtoReflect.Descriptor instead.
|
|
// Deprecated: Use InboundHandlerConfig.ProtoReflect.Descriptor instead.
|
|
func (*InboundHandlerConfig) Descriptor() ([]byte, []int) {
|
|
func (*InboundHandlerConfig) Descriptor() ([]byte, []int) {
|
|
- return file_app_proxyman_config_proto_rawDescGZIP(), []int{4}
|
|
|
|
|
|
+ return file_app_proxyman_config_proto_rawDescGZIP(), []int{3}
|
|
}
|
|
}
|
|
|
|
|
|
func (x *InboundHandlerConfig) GetTag() string {
|
|
func (x *InboundHandlerConfig) GetTag() string {
|
|
@@ -415,7 +290,7 @@ type OutboundConfig struct {
|
|
|
|
|
|
func (x *OutboundConfig) Reset() {
|
|
func (x *OutboundConfig) Reset() {
|
|
*x = OutboundConfig{}
|
|
*x = OutboundConfig{}
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[5]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[4]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -427,7 +302,7 @@ func (x *OutboundConfig) String() string {
|
|
func (*OutboundConfig) ProtoMessage() {}
|
|
func (*OutboundConfig) ProtoMessage() {}
|
|
|
|
|
|
func (x *OutboundConfig) ProtoReflect() protoreflect.Message {
|
|
func (x *OutboundConfig) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[5]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[4]
|
|
if x != nil {
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -440,7 +315,7 @@ func (x *OutboundConfig) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use OutboundConfig.ProtoReflect.Descriptor instead.
|
|
// Deprecated: Use OutboundConfig.ProtoReflect.Descriptor instead.
|
|
func (*OutboundConfig) Descriptor() ([]byte, []int) {
|
|
func (*OutboundConfig) Descriptor() ([]byte, []int) {
|
|
- return file_app_proxyman_config_proto_rawDescGZIP(), []int{5}
|
|
|
|
|
|
+ return file_app_proxyman_config_proto_rawDescGZIP(), []int{4}
|
|
}
|
|
}
|
|
|
|
|
|
type SenderConfig struct {
|
|
type SenderConfig struct {
|
|
@@ -459,7 +334,7 @@ type SenderConfig struct {
|
|
|
|
|
|
func (x *SenderConfig) Reset() {
|
|
func (x *SenderConfig) Reset() {
|
|
*x = SenderConfig{}
|
|
*x = SenderConfig{}
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[6]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[5]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -471,7 +346,7 @@ func (x *SenderConfig) String() string {
|
|
func (*SenderConfig) ProtoMessage() {}
|
|
func (*SenderConfig) ProtoMessage() {}
|
|
|
|
|
|
func (x *SenderConfig) ProtoReflect() protoreflect.Message {
|
|
func (x *SenderConfig) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[6]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[5]
|
|
if x != nil {
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -484,7 +359,7 @@ func (x *SenderConfig) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use SenderConfig.ProtoReflect.Descriptor instead.
|
|
// Deprecated: Use SenderConfig.ProtoReflect.Descriptor instead.
|
|
func (*SenderConfig) Descriptor() ([]byte, []int) {
|
|
func (*SenderConfig) Descriptor() ([]byte, []int) {
|
|
- return file_app_proxyman_config_proto_rawDescGZIP(), []int{6}
|
|
|
|
|
|
+ return file_app_proxyman_config_proto_rawDescGZIP(), []int{5}
|
|
}
|
|
}
|
|
|
|
|
|
func (x *SenderConfig) GetVia() *net.IPOrDomain {
|
|
func (x *SenderConfig) GetVia() *net.IPOrDomain {
|
|
@@ -546,7 +421,7 @@ type MultiplexingConfig struct {
|
|
|
|
|
|
func (x *MultiplexingConfig) Reset() {
|
|
func (x *MultiplexingConfig) Reset() {
|
|
*x = MultiplexingConfig{}
|
|
*x = MultiplexingConfig{}
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[7]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[6]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
}
|
|
@@ -558,7 +433,7 @@ func (x *MultiplexingConfig) String() string {
|
|
func (*MultiplexingConfig) ProtoMessage() {}
|
|
func (*MultiplexingConfig) ProtoMessage() {}
|
|
|
|
|
|
func (x *MultiplexingConfig) ProtoReflect() protoreflect.Message {
|
|
func (x *MultiplexingConfig) ProtoReflect() protoreflect.Message {
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[7]
|
|
|
|
|
|
+ mi := &file_app_proxyman_config_proto_msgTypes[6]
|
|
if x != nil {
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
if ms.LoadMessageInfo() == nil {
|
|
@@ -571,7 +446,7 @@ func (x *MultiplexingConfig) ProtoReflect() protoreflect.Message {
|
|
|
|
|
|
// Deprecated: Use MultiplexingConfig.ProtoReflect.Descriptor instead.
|
|
// Deprecated: Use MultiplexingConfig.ProtoReflect.Descriptor instead.
|
|
func (*MultiplexingConfig) Descriptor() ([]byte, []int) {
|
|
func (*MultiplexingConfig) Descriptor() ([]byte, []int) {
|
|
- return file_app_proxyman_config_proto_rawDescGZIP(), []int{7}
|
|
|
|
|
|
+ return file_app_proxyman_config_proto_rawDescGZIP(), []int{6}
|
|
}
|
|
}
|
|
|
|
|
|
func (x *MultiplexingConfig) GetEnabled() bool {
|
|
func (x *MultiplexingConfig) GetEnabled() bool {
|
|
@@ -602,96 +477,6 @@ func (x *MultiplexingConfig) GetXudpProxyUDP443() string {
|
|
return ""
|
|
return ""
|
|
}
|
|
}
|
|
|
|
|
|
-type AllocationStrategy_AllocationStrategyConcurrency struct {
|
|
|
|
- state protoimpl.MessageState
|
|
|
|
- sizeCache protoimpl.SizeCache
|
|
|
|
- unknownFields protoimpl.UnknownFields
|
|
|
|
-
|
|
|
|
- Value uint32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy_AllocationStrategyConcurrency) Reset() {
|
|
|
|
- *x = AllocationStrategy_AllocationStrategyConcurrency{}
|
|
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[8]
|
|
|
|
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
- ms.StoreMessageInfo(mi)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy_AllocationStrategyConcurrency) String() string {
|
|
|
|
- return protoimpl.X.MessageStringOf(x)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (*AllocationStrategy_AllocationStrategyConcurrency) ProtoMessage() {}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy_AllocationStrategyConcurrency) ProtoReflect() protoreflect.Message {
|
|
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[8]
|
|
|
|
- if x != nil {
|
|
|
|
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
- if ms.LoadMessageInfo() == nil {
|
|
|
|
- ms.StoreMessageInfo(mi)
|
|
|
|
- }
|
|
|
|
- return ms
|
|
|
|
- }
|
|
|
|
- return mi.MessageOf(x)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-// Deprecated: Use AllocationStrategy_AllocationStrategyConcurrency.ProtoReflect.Descriptor instead.
|
|
|
|
-func (*AllocationStrategy_AllocationStrategyConcurrency) Descriptor() ([]byte, []int) {
|
|
|
|
- return file_app_proxyman_config_proto_rawDescGZIP(), []int{1, 0}
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy_AllocationStrategyConcurrency) GetValue() uint32 {
|
|
|
|
- if x != nil {
|
|
|
|
- return x.Value
|
|
|
|
- }
|
|
|
|
- return 0
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-type AllocationStrategy_AllocationStrategyRefresh struct {
|
|
|
|
- state protoimpl.MessageState
|
|
|
|
- sizeCache protoimpl.SizeCache
|
|
|
|
- unknownFields protoimpl.UnknownFields
|
|
|
|
-
|
|
|
|
- Value uint32 `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy_AllocationStrategyRefresh) Reset() {
|
|
|
|
- *x = AllocationStrategy_AllocationStrategyRefresh{}
|
|
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[9]
|
|
|
|
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
- ms.StoreMessageInfo(mi)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy_AllocationStrategyRefresh) String() string {
|
|
|
|
- return protoimpl.X.MessageStringOf(x)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (*AllocationStrategy_AllocationStrategyRefresh) ProtoMessage() {}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy_AllocationStrategyRefresh) ProtoReflect() protoreflect.Message {
|
|
|
|
- mi := &file_app_proxyman_config_proto_msgTypes[9]
|
|
|
|
- if x != nil {
|
|
|
|
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
|
|
- if ms.LoadMessageInfo() == nil {
|
|
|
|
- ms.StoreMessageInfo(mi)
|
|
|
|
- }
|
|
|
|
- return ms
|
|
|
|
- }
|
|
|
|
- return mi.MessageOf(x)
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-// Deprecated: Use AllocationStrategy_AllocationStrategyRefresh.ProtoReflect.Descriptor instead.
|
|
|
|
-func (*AllocationStrategy_AllocationStrategyRefresh) Descriptor() ([]byte, []int) {
|
|
|
|
- return file_app_proxyman_config_proto_rawDescGZIP(), []int{1, 1}
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-func (x *AllocationStrategy_AllocationStrategyRefresh) GetValue() uint32 {
|
|
|
|
- if x != nil {
|
|
|
|
- return x.Value
|
|
|
|
- }
|
|
|
|
- return 0
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
var File_app_proxyman_config_proto protoreflect.FileDescriptor
|
|
var File_app_proxyman_config_proto protoreflect.FileDescriptor
|
|
|
|
|
|
var file_app_proxyman_config_proto_rawDesc = []byte{
|
|
var file_app_proxyman_config_proto_rawDesc = []byte{
|
|
@@ -706,130 +491,98 @@ var file_app_proxyman_config_proto_rawDesc = []byte{
|
|
0x1a, 0x21, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2f,
|
|
0x1a, 0x21, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2f,
|
|
0x74, 0x79, 0x70, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72,
|
|
0x74, 0x79, 0x70, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72,
|
|
0x6f, 0x74, 0x6f, 0x22, 0x0f, 0x0a, 0x0d, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x43, 0x6f,
|
|
0x6f, 0x74, 0x6f, 0x22, 0x0f, 0x0a, 0x0d, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x43, 0x6f,
|
|
- 0x6e, 0x66, 0x69, 0x67, 0x22, 0xae, 0x03, 0x0a, 0x12, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74,
|
|
|
|
- 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x3e, 0x0a, 0x04, 0x74,
|
|
|
|
- 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2a, 0x2e, 0x78, 0x72, 0x61, 0x79,
|
|
|
|
- 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x41, 0x6c,
|
|
|
|
- 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79,
|
|
|
|
- 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x65, 0x0a, 0x0b, 0x63,
|
|
|
|
- 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
|
|
|
|
- 0x32, 0x43, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78,
|
|
|
|
- 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
|
|
|
|
- 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
|
|
|
|
- 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x43, 0x6f, 0x6e, 0x63, 0x75, 0x72,
|
|
|
|
- 0x72, 0x65, 0x6e, 0x63, 0x79, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
|
|
|
|
- 0x63, 0x79, 0x12, 0x59, 0x0a, 0x07, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x18, 0x03, 0x20,
|
|
|
|
- 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70,
|
|
|
|
- 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
|
|
|
|
- 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63,
|
|
|
|
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x65, 0x66,
|
|
|
|
- 0x72, 0x65, 0x73, 0x68, 0x52, 0x07, 0x72, 0x65, 0x66, 0x72, 0x65, 0x73, 0x68, 0x1a, 0x35, 0x0a,
|
|
|
|
- 0x1d, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74,
|
|
|
|
- 0x65, 0x67, 0x79, 0x43, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x14,
|
|
|
|
- 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76,
|
|
|
|
- 0x61, 0x6c, 0x75, 0x65, 0x1a, 0x31, 0x0a, 0x19, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
|
|
|
|
- 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x65, 0x66, 0x72, 0x65, 0x73,
|
|
|
|
- 0x68, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d,
|
|
|
|
- 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x2c, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12,
|
|
|
|
- 0x0a, 0x0a, 0x06, 0x41, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x52,
|
|
|
|
- 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x45, 0x78, 0x74, 0x65, 0x72,
|
|
|
|
- 0x6e, 0x61, 0x6c, 0x10, 0x02, 0x22, 0xcc, 0x01, 0x0a, 0x0e, 0x53, 0x6e, 0x69, 0x66, 0x66, 0x69,
|
|
|
|
- 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62,
|
|
|
|
- 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c,
|
|
|
|
- 0x65, 0x64, 0x12, 0x31, 0x0a, 0x14, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f,
|
|
|
|
- 0x6e, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09,
|
|
|
|
- 0x52, 0x13, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x76, 0x65,
|
|
|
|
- 0x72, 0x72, 0x69, 0x64, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73,
|
|
|
|
- 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52,
|
|
|
|
- 0x0f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64,
|
|
|
|
- 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6f, 0x6e, 0x6c,
|
|
|
|
- 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74,
|
|
|
|
- 0x61, 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x5f, 0x6f,
|
|
|
|
- 0x6e, 0x6c, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x72, 0x6f, 0x75, 0x74, 0x65,
|
|
|
|
- 0x4f, 0x6e, 0x6c, 0x79, 0x22, 0xbd, 0x03, 0x0a, 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65,
|
|
|
|
- 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x36, 0x0a, 0x09, 0x70, 0x6f, 0x72, 0x74, 0x5f,
|
|
|
|
- 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x78, 0x72, 0x61,
|
|
|
|
- 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x2e, 0x50, 0x6f, 0x72,
|
|
|
|
- 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x08, 0x70, 0x6f, 0x72, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12,
|
|
|
|
- 0x33, 0x0a, 0x06, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32,
|
|
|
|
- 0x1b, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65,
|
|
|
|
- 0x74, 0x2e, 0x49, 0x50, 0x4f, 0x72, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x06, 0x6c, 0x69,
|
|
|
|
- 0x73, 0x74, 0x65, 0x6e, 0x12, 0x56, 0x0a, 0x13, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69,
|
|
|
|
- 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
|
|
- 0x0b, 0x32, 0x25, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f,
|
|
|
|
- 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x41, 0x6c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
|
- 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x12, 0x61, 0x6c, 0x6c, 0x6f, 0x63, 0x61,
|
|
|
|
- 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x4e, 0x0a, 0x0f,
|
|
|
|
- 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18,
|
|
|
|
- 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x74, 0x72, 0x61,
|
|
|
|
- 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e,
|
|
|
|
- 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x0e, 0x73, 0x74,
|
|
|
|
- 0x72, 0x65, 0x61, 0x6d, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x40, 0x0a, 0x1c,
|
|
|
|
- 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x5f, 0x6f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c,
|
|
|
|
- 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01,
|
|
|
|
- 0x28, 0x08, 0x52, 0x1a, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x4f, 0x72, 0x69, 0x67, 0x69,
|
|
|
|
- 0x6e, 0x61, 0x6c, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4e,
|
|
|
|
- 0x0a, 0x11, 0x73, 0x6e, 0x69, 0x66, 0x66, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69,
|
|
|
|
- 0x6e, 0x67, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x78, 0x72, 0x61, 0x79,
|
|
|
|
- 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x53, 0x6e,
|
|
|
|
- 0x69, 0x66, 0x66, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x10, 0x73, 0x6e,
|
|
|
|
- 0x69, 0x66, 0x66, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x4a, 0x04,
|
|
|
|
- 0x08, 0x06, 0x10, 0x07, 0x22, 0xc0, 0x01, 0x0a, 0x14, 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64,
|
|
|
|
- 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x10, 0x0a,
|
|
|
|
- 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12,
|
|
|
|
- 0x4d, 0x0a, 0x11, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x74, 0x74,
|
|
|
|
- 0x69, 0x6e, 0x67, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61,
|
|
|
|
- 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e,
|
|
|
|
- 0x54, 0x79, 0x70, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x10, 0x72, 0x65,
|
|
|
|
- 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x47,
|
|
|
|
- 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
|
|
|
|
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f,
|
|
|
|
- 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x54, 0x79, 0x70, 0x65,
|
|
|
|
- 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x53,
|
|
|
|
- 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x22, 0x10, 0x0a, 0x0e, 0x4f, 0x75, 0x74, 0x62, 0x6f,
|
|
|
|
- 0x75, 0x6e, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x9d, 0x03, 0x0a, 0x0c, 0x53, 0x65,
|
|
|
|
- 0x6e, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x2d, 0x0a, 0x03, 0x76, 0x69,
|
|
|
|
- 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63,
|
|
|
|
- 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x2e, 0x49, 0x50, 0x4f, 0x72, 0x44, 0x6f,
|
|
|
|
- 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x03, 0x76, 0x69, 0x61, 0x12, 0x4e, 0x0a, 0x0f, 0x73, 0x74, 0x72,
|
|
|
|
- 0x65, 0x61, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x02, 0x20, 0x01,
|
|
|
|
- 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70,
|
|
|
|
- 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x53, 0x74, 0x72,
|
|
|
|
- 0x65, 0x61, 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x61,
|
|
|
|
- 0x6d, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x4b, 0x0a, 0x0e, 0x70, 0x72, 0x6f,
|
|
|
|
- 0x78, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
|
|
|
|
- 0x0b, 0x32, 0x24, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f,
|
|
|
|
- 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x78,
|
|
|
|
- 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x53, 0x65,
|
|
|
|
- 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x54, 0x0a, 0x12, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70,
|
|
|
|
- 0x6c, 0x65, 0x78, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x04, 0x20, 0x01,
|
|
|
|
- 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72,
|
|
|
|
- 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x78,
|
|
|
|
- 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x11, 0x6d, 0x75, 0x6c, 0x74, 0x69,
|
|
|
|
- 0x70, 0x6c, 0x65, 0x78, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x19, 0x0a, 0x08,
|
|
|
|
- 0x76, 0x69, 0x61, 0x5f, 0x63, 0x69, 0x64, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
|
|
|
|
- 0x76, 0x69, 0x61, 0x43, 0x69, 0x64, 0x72, 0x12, 0x50, 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65,
|
|
|
|
- 0x74, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e,
|
|
|
|
- 0x32, 0x27, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72,
|
|
|
|
- 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69,
|
|
|
|
- 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65,
|
|
|
|
- 0x74, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x22, 0xa4, 0x01, 0x0a, 0x12, 0x4d, 0x75,
|
|
|
|
|
|
+ 0x6e, 0x66, 0x69, 0x67, 0x22, 0xcc, 0x01, 0x0a, 0x0e, 0x53, 0x6e, 0x69, 0x66, 0x66, 0x69, 0x6e,
|
|
|
|
+ 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c,
|
|
|
|
+ 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
|
|
+ 0x64, 0x12, 0x31, 0x0a, 0x14, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e,
|
|
|
|
+ 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52,
|
|
|
|
+ 0x13, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x76, 0x65, 0x72,
|
|
|
|
+ 0x72, 0x69, 0x64, 0x65, 0x12, 0x29, 0x0a, 0x10, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x5f,
|
|
|
|
+ 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0f,
|
|
|
|
+ 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x12,
|
|
|
|
+ 0x23, 0x0a, 0x0d, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6f, 0x6e, 0x6c, 0x79,
|
|
|
|
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61,
|
|
|
|
+ 0x4f, 0x6e, 0x6c, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x5f, 0x6f, 0x6e,
|
|
|
|
+ 0x6c, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x4f,
|
|
|
|
+ 0x6e, 0x6c, 0x79, 0x22, 0xe5, 0x02, 0x0a, 0x0e, 0x52, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72,
|
|
|
|
+ 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x36, 0x0a, 0x09, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x6c,
|
|
|
|
+ 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x78, 0x72, 0x61, 0x79,
|
|
|
|
+ 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x2e, 0x50, 0x6f, 0x72, 0x74,
|
|
|
|
+ 0x4c, 0x69, 0x73, 0x74, 0x52, 0x08, 0x70, 0x6f, 0x72, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x33,
|
|
|
|
+ 0x0a, 0x06, 0x6c, 0x69, 0x73, 0x74, 0x65, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b,
|
|
|
|
+ 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74,
|
|
|
|
+ 0x2e, 0x49, 0x50, 0x4f, 0x72, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x06, 0x6c, 0x69, 0x73,
|
|
|
|
+ 0x74, 0x65, 0x6e, 0x12, 0x4e, 0x0a, 0x0f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x5f, 0x73, 0x65,
|
|
|
|
+ 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x78,
|
|
|
|
+ 0x72, 0x61, 0x79, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e,
|
|
|
|
+ 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x43, 0x6f, 0x6e,
|
|
|
|
+ 0x66, 0x69, 0x67, 0x52, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x53, 0x65, 0x74, 0x74, 0x69,
|
|
|
|
+ 0x6e, 0x67, 0x73, 0x12, 0x40, 0x0a, 0x1c, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x5f, 0x6f,
|
|
|
|
+ 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74,
|
|
|
|
+ 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x1a, 0x72, 0x65, 0x63, 0x65, 0x69,
|
|
|
|
+ 0x76, 0x65, 0x4f, 0x72, 0x69, 0x67, 0x69, 0x6e, 0x61, 0x6c, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e,
|
|
|
|
+ 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x4e, 0x0a, 0x11, 0x73, 0x6e, 0x69, 0x66, 0x66, 0x69, 0x6e,
|
|
|
|
+ 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b,
|
|
|
|
+ 0x32, 0x21, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78,
|
|
|
|
+ 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x53, 0x6e, 0x69, 0x66, 0x66, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e,
|
|
|
|
+ 0x66, 0x69, 0x67, 0x52, 0x10, 0x73, 0x6e, 0x69, 0x66, 0x66, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74,
|
|
|
|
+ 0x74, 0x69, 0x6e, 0x67, 0x73, 0x4a, 0x04, 0x08, 0x05, 0x10, 0x06, 0x22, 0xc0, 0x01, 0x0a, 0x14,
|
|
|
|
+ 0x49, 0x6e, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x48, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x43, 0x6f,
|
|
|
|
+ 0x6e, 0x66, 0x69, 0x67, 0x12, 0x10, 0x0a, 0x03, 0x74, 0x61, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
+ 0x09, 0x52, 0x03, 0x74, 0x61, 0x67, 0x12, 0x4d, 0x0a, 0x11, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76,
|
|
|
|
+ 0x65, 0x72, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28,
|
|
|
|
+ 0x0b, 0x32, 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
|
|
|
|
+ 0x73, 0x65, 0x72, 0x69, 0x61, 0x6c, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
|
|
|
|
+ 0x61, 0x67, 0x65, 0x52, 0x10, 0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x72, 0x53, 0x65, 0x74,
|
|
|
|
+ 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x47, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x5f, 0x73,
|
|
|
|
+ 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e,
|
|
|
|
+ 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x73, 0x65, 0x72, 0x69,
|
|
|
|
+ 0x61, 0x6c, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52,
|
|
|
|
+ 0x0d, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x22, 0x10,
|
|
|
|
+ 0x0a, 0x0e, 0x4f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
|
|
+ 0x22, 0x9d, 0x03, 0x0a, 0x0c, 0x53, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
|
|
+ 0x67, 0x12, 0x2d, 0x0a, 0x03, 0x76, 0x69, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b,
|
|
|
|
+ 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74,
|
|
|
|
+ 0x2e, 0x49, 0x50, 0x4f, 0x72, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x03, 0x76, 0x69, 0x61,
|
|
|
|
+ 0x12, 0x4e, 0x0a, 0x0f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69,
|
|
|
|
+ 0x6e, 0x67, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x78, 0x72, 0x61, 0x79,
|
|
|
|
+ 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72,
|
|
|
|
+ 0x6e, 0x65, 0x74, 0x2e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
|
|
+ 0x52, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73,
|
|
|
|
+ 0x12, 0x4b, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e,
|
|
|
|
+ 0x67, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e,
|
|
|
|
+ 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
|
|
|
|
+ 0x65, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x0d,
|
|
|
|
+ 0x70, 0x72, 0x6f, 0x78, 0x79, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x54, 0x0a,
|
|
|
|
+ 0x12, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x78, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69,
|
|
|
|
+ 0x6e, 0x67, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x78, 0x72, 0x61, 0x79,
|
|
|
|
+ 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x2e, 0x4d, 0x75,
|
|
0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
|
|
- 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
|
|
|
|
- 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f,
|
|
|
|
- 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
|
|
|
|
- 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x28, 0x0a, 0x0f,
|
|
|
|
- 0x78, 0x75, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18,
|
|
|
|
- 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x78, 0x75, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x63, 0x75,
|
|
|
|
- 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x78, 0x75, 0x64, 0x70, 0x50, 0x72,
|
|
|
|
- 0x6f, 0x78, 0x79, 0x55, 0x44, 0x50, 0x34, 0x34, 0x33, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
|
|
|
|
|
|
+ 0x52, 0x11, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x78, 0x53, 0x65, 0x74, 0x74, 0x69,
|
|
|
|
+ 0x6e, 0x67, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x76, 0x69, 0x61, 0x5f, 0x63, 0x69, 0x64, 0x72, 0x18,
|
|
|
|
+ 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x76, 0x69, 0x61, 0x43, 0x69, 0x64, 0x72, 0x12, 0x50,
|
|
|
|
+ 0x0a, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67,
|
|
|
|
+ 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x74,
|
|
|
|
+ 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65,
|
|
|
|
+ 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79,
|
|
|
|
+ 0x52, 0x0e, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79,
|
|
|
|
+ 0x22, 0xa4, 0x01, 0x0a, 0x12, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x6e,
|
|
|
|
+ 0x67, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c,
|
|
|
|
+ 0x65, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65,
|
|
|
|
+ 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79,
|
|
|
|
+ 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65,
|
|
|
|
+ 0x6e, 0x63, 0x79, 0x12, 0x28, 0x0a, 0x0f, 0x78, 0x75, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x63, 0x75,
|
|
|
|
+ 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0f, 0x78, 0x75,
|
|
|
|
+ 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x28, 0x0a,
|
|
0x0f, 0x78, 0x75, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x55, 0x44, 0x50, 0x34, 0x34, 0x33,
|
|
0x0f, 0x78, 0x75, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x55, 0x44, 0x50, 0x34, 0x34, 0x33,
|
|
- 0x42, 0x55, 0x0a, 0x15, 0x63, 0x6f, 0x6d, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70,
|
|
|
|
- 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x50, 0x01, 0x5a, 0x26, 0x67, 0x69, 0x74,
|
|
|
|
- 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x78, 0x74, 0x6c, 0x73, 0x2f, 0x78, 0x72, 0x61,
|
|
|
|
- 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x61, 0x70, 0x70, 0x2f, 0x70, 0x72, 0x6f, 0x78, 0x79,
|
|
|
|
- 0x6d, 0x61, 0x6e, 0xaa, 0x02, 0x11, 0x58, 0x72, 0x61, 0x79, 0x2e, 0x41, 0x70, 0x70, 0x2e, 0x50,
|
|
|
|
- 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
|
|
|
+ 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x78, 0x75, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x78,
|
|
|
|
+ 0x79, 0x55, 0x44, 0x50, 0x34, 0x34, 0x33, 0x42, 0x55, 0x0a, 0x15, 0x63, 0x6f, 0x6d, 0x2e, 0x78,
|
|
|
|
+ 0x72, 0x61, 0x79, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e,
|
|
|
|
+ 0x50, 0x01, 0x5a, 0x26, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x78,
|
|
|
|
+ 0x74, 0x6c, 0x73, 0x2f, 0x78, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x61, 0x70,
|
|
|
|
+ 0x70, 0x2f, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0xaa, 0x02, 0x11, 0x58, 0x72, 0x61,
|
|
|
|
+ 0x79, 0x2e, 0x41, 0x70, 0x70, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x6d, 0x61, 0x6e, 0x62, 0x06,
|
|
|
|
+ 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
}
|
|
}
|
|
|
|
|
|
var (
|
|
var (
|
|
@@ -844,48 +597,39 @@ func file_app_proxyman_config_proto_rawDescGZIP() []byte {
|
|
return file_app_proxyman_config_proto_rawDescData
|
|
return file_app_proxyman_config_proto_rawDescData
|
|
}
|
|
}
|
|
|
|
|
|
-var file_app_proxyman_config_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
|
|
-var file_app_proxyman_config_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
|
|
|
|
|
|
+var file_app_proxyman_config_proto_msgTypes = make([]protoimpl.MessageInfo, 7)
|
|
var file_app_proxyman_config_proto_goTypes = []any{
|
|
var file_app_proxyman_config_proto_goTypes = []any{
|
|
- (AllocationStrategy_Type)(0), // 0: xray.app.proxyman.AllocationStrategy.Type
|
|
|
|
- (*InboundConfig)(nil), // 1: xray.app.proxyman.InboundConfig
|
|
|
|
- (*AllocationStrategy)(nil), // 2: xray.app.proxyman.AllocationStrategy
|
|
|
|
- (*SniffingConfig)(nil), // 3: xray.app.proxyman.SniffingConfig
|
|
|
|
- (*ReceiverConfig)(nil), // 4: xray.app.proxyman.ReceiverConfig
|
|
|
|
- (*InboundHandlerConfig)(nil), // 5: xray.app.proxyman.InboundHandlerConfig
|
|
|
|
- (*OutboundConfig)(nil), // 6: xray.app.proxyman.OutboundConfig
|
|
|
|
- (*SenderConfig)(nil), // 7: xray.app.proxyman.SenderConfig
|
|
|
|
- (*MultiplexingConfig)(nil), // 8: xray.app.proxyman.MultiplexingConfig
|
|
|
|
- (*AllocationStrategy_AllocationStrategyConcurrency)(nil), // 9: xray.app.proxyman.AllocationStrategy.AllocationStrategyConcurrency
|
|
|
|
- (*AllocationStrategy_AllocationStrategyRefresh)(nil), // 10: xray.app.proxyman.AllocationStrategy.AllocationStrategyRefresh
|
|
|
|
- (*net.PortList)(nil), // 11: xray.common.net.PortList
|
|
|
|
- (*net.IPOrDomain)(nil), // 12: xray.common.net.IPOrDomain
|
|
|
|
- (*internet.StreamConfig)(nil), // 13: xray.transport.internet.StreamConfig
|
|
|
|
- (*serial.TypedMessage)(nil), // 14: xray.common.serial.TypedMessage
|
|
|
|
- (*internet.ProxyConfig)(nil), // 15: xray.transport.internet.ProxyConfig
|
|
|
|
- (internet.DomainStrategy)(0), // 16: xray.transport.internet.DomainStrategy
|
|
|
|
|
|
+ (*InboundConfig)(nil), // 0: xray.app.proxyman.InboundConfig
|
|
|
|
+ (*SniffingConfig)(nil), // 1: xray.app.proxyman.SniffingConfig
|
|
|
|
+ (*ReceiverConfig)(nil), // 2: xray.app.proxyman.ReceiverConfig
|
|
|
|
+ (*InboundHandlerConfig)(nil), // 3: xray.app.proxyman.InboundHandlerConfig
|
|
|
|
+ (*OutboundConfig)(nil), // 4: xray.app.proxyman.OutboundConfig
|
|
|
|
+ (*SenderConfig)(nil), // 5: xray.app.proxyman.SenderConfig
|
|
|
|
+ (*MultiplexingConfig)(nil), // 6: xray.app.proxyman.MultiplexingConfig
|
|
|
|
+ (*net.PortList)(nil), // 7: xray.common.net.PortList
|
|
|
|
+ (*net.IPOrDomain)(nil), // 8: xray.common.net.IPOrDomain
|
|
|
|
+ (*internet.StreamConfig)(nil), // 9: xray.transport.internet.StreamConfig
|
|
|
|
+ (*serial.TypedMessage)(nil), // 10: xray.common.serial.TypedMessage
|
|
|
|
+ (*internet.ProxyConfig)(nil), // 11: xray.transport.internet.ProxyConfig
|
|
|
|
+ (internet.DomainStrategy)(0), // 12: xray.transport.internet.DomainStrategy
|
|
}
|
|
}
|
|
var file_app_proxyman_config_proto_depIdxs = []int32{
|
|
var file_app_proxyman_config_proto_depIdxs = []int32{
|
|
- 0, // 0: xray.app.proxyman.AllocationStrategy.type:type_name -> xray.app.proxyman.AllocationStrategy.Type
|
|
|
|
- 9, // 1: xray.app.proxyman.AllocationStrategy.concurrency:type_name -> xray.app.proxyman.AllocationStrategy.AllocationStrategyConcurrency
|
|
|
|
- 10, // 2: xray.app.proxyman.AllocationStrategy.refresh:type_name -> xray.app.proxyman.AllocationStrategy.AllocationStrategyRefresh
|
|
|
|
- 11, // 3: xray.app.proxyman.ReceiverConfig.port_list:type_name -> xray.common.net.PortList
|
|
|
|
- 12, // 4: xray.app.proxyman.ReceiverConfig.listen:type_name -> xray.common.net.IPOrDomain
|
|
|
|
- 2, // 5: xray.app.proxyman.ReceiverConfig.allocation_strategy:type_name -> xray.app.proxyman.AllocationStrategy
|
|
|
|
- 13, // 6: xray.app.proxyman.ReceiverConfig.stream_settings:type_name -> xray.transport.internet.StreamConfig
|
|
|
|
- 3, // 7: xray.app.proxyman.ReceiverConfig.sniffing_settings:type_name -> xray.app.proxyman.SniffingConfig
|
|
|
|
- 14, // 8: xray.app.proxyman.InboundHandlerConfig.receiver_settings:type_name -> xray.common.serial.TypedMessage
|
|
|
|
- 14, // 9: xray.app.proxyman.InboundHandlerConfig.proxy_settings:type_name -> xray.common.serial.TypedMessage
|
|
|
|
- 12, // 10: xray.app.proxyman.SenderConfig.via:type_name -> xray.common.net.IPOrDomain
|
|
|
|
- 13, // 11: xray.app.proxyman.SenderConfig.stream_settings:type_name -> xray.transport.internet.StreamConfig
|
|
|
|
- 15, // 12: xray.app.proxyman.SenderConfig.proxy_settings:type_name -> xray.transport.internet.ProxyConfig
|
|
|
|
- 8, // 13: xray.app.proxyman.SenderConfig.multiplex_settings:type_name -> xray.app.proxyman.MultiplexingConfig
|
|
|
|
- 16, // 14: xray.app.proxyman.SenderConfig.target_strategy:type_name -> xray.transport.internet.DomainStrategy
|
|
|
|
- 15, // [15:15] is the sub-list for method output_type
|
|
|
|
- 15, // [15:15] is the sub-list for method input_type
|
|
|
|
- 15, // [15:15] is the sub-list for extension type_name
|
|
|
|
- 15, // [15:15] is the sub-list for extension extendee
|
|
|
|
- 0, // [0:15] is the sub-list for field type_name
|
|
|
|
|
|
+ 7, // 0: xray.app.proxyman.ReceiverConfig.port_list:type_name -> xray.common.net.PortList
|
|
|
|
+ 8, // 1: xray.app.proxyman.ReceiverConfig.listen:type_name -> xray.common.net.IPOrDomain
|
|
|
|
+ 9, // 2: xray.app.proxyman.ReceiverConfig.stream_settings:type_name -> xray.transport.internet.StreamConfig
|
|
|
|
+ 1, // 3: xray.app.proxyman.ReceiverConfig.sniffing_settings:type_name -> xray.app.proxyman.SniffingConfig
|
|
|
|
+ 10, // 4: xray.app.proxyman.InboundHandlerConfig.receiver_settings:type_name -> xray.common.serial.TypedMessage
|
|
|
|
+ 10, // 5: xray.app.proxyman.InboundHandlerConfig.proxy_settings:type_name -> xray.common.serial.TypedMessage
|
|
|
|
+ 8, // 6: xray.app.proxyman.SenderConfig.via:type_name -> xray.common.net.IPOrDomain
|
|
|
|
+ 9, // 7: xray.app.proxyman.SenderConfig.stream_settings:type_name -> xray.transport.internet.StreamConfig
|
|
|
|
+ 11, // 8: xray.app.proxyman.SenderConfig.proxy_settings:type_name -> xray.transport.internet.ProxyConfig
|
|
|
|
+ 6, // 9: xray.app.proxyman.SenderConfig.multiplex_settings:type_name -> xray.app.proxyman.MultiplexingConfig
|
|
|
|
+ 12, // 10: xray.app.proxyman.SenderConfig.target_strategy:type_name -> xray.transport.internet.DomainStrategy
|
|
|
|
+ 11, // [11:11] is the sub-list for method output_type
|
|
|
|
+ 11, // [11:11] is the sub-list for method input_type
|
|
|
|
+ 11, // [11:11] is the sub-list for extension type_name
|
|
|
|
+ 11, // [11:11] is the sub-list for extension extendee
|
|
|
|
+ 0, // [0:11] is the sub-list for field type_name
|
|
}
|
|
}
|
|
|
|
|
|
func init() { file_app_proxyman_config_proto_init() }
|
|
func init() { file_app_proxyman_config_proto_init() }
|
|
@@ -898,14 +642,13 @@ func file_app_proxyman_config_proto_init() {
|
|
File: protoimpl.DescBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: file_app_proxyman_config_proto_rawDesc,
|
|
RawDescriptor: file_app_proxyman_config_proto_rawDesc,
|
|
- NumEnums: 1,
|
|
|
|
- NumMessages: 10,
|
|
|
|
|
|
+ NumEnums: 0,
|
|
|
|
+ NumMessages: 7,
|
|
NumExtensions: 0,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
NumServices: 0,
|
|
},
|
|
},
|
|
GoTypes: file_app_proxyman_config_proto_goTypes,
|
|
GoTypes: file_app_proxyman_config_proto_goTypes,
|
|
DependencyIndexes: file_app_proxyman_config_proto_depIdxs,
|
|
DependencyIndexes: file_app_proxyman_config_proto_depIdxs,
|
|
- EnumInfos: file_app_proxyman_config_proto_enumTypes,
|
|
|
|
MessageInfos: file_app_proxyman_config_proto_msgTypes,
|
|
MessageInfos: file_app_proxyman_config_proto_msgTypes,
|
|
}.Build()
|
|
}.Build()
|
|
File_app_proxyman_config_proto = out.File
|
|
File_app_proxyman_config_proto = out.File
|