|
@@ -16,6 +16,55 @@ const (
|
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
|
)
|
|
)
|
|
|
|
|
|
|
|
|
|
+type ProtocolReplacement int32
|
|
|
|
|
+
|
|
|
|
|
+const (
|
|
|
|
|
+ ProtocolReplacement_IDENTITY ProtocolReplacement = 0
|
|
|
|
|
+ ProtocolReplacement_FORCE_TCP ProtocolReplacement = 1
|
|
|
|
|
+ ProtocolReplacement_FORCE_UDP ProtocolReplacement = 2
|
|
|
|
|
+)
|
|
|
|
|
+
|
|
|
|
|
+// Enum value maps for ProtocolReplacement.
|
|
|
|
|
+var (
|
|
|
|
|
+ ProtocolReplacement_name = map[int32]string{
|
|
|
|
|
+ 0: "IDENTITY",
|
|
|
|
|
+ 1: "FORCE_TCP",
|
|
|
|
|
+ 2: "FORCE_UDP",
|
|
|
|
|
+ }
|
|
|
|
|
+ ProtocolReplacement_value = map[string]int32{
|
|
|
|
|
+ "IDENTITY": 0,
|
|
|
|
|
+ "FORCE_TCP": 1,
|
|
|
|
|
+ "FORCE_UDP": 2,
|
|
|
|
|
+ }
|
|
|
|
|
+)
|
|
|
|
|
+
|
|
|
|
|
+func (x ProtocolReplacement) Enum() *ProtocolReplacement {
|
|
|
|
|
+ p := new(ProtocolReplacement)
|
|
|
|
|
+ *p = x
|
|
|
|
|
+ return p
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x ProtocolReplacement) String() string {
|
|
|
|
|
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (ProtocolReplacement) Descriptor() protoreflect.EnumDescriptor {
|
|
|
|
|
+ return file_proxy_freedom_config_proto_enumTypes[0].Descriptor()
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (ProtocolReplacement) Type() protoreflect.EnumType {
|
|
|
|
|
+ return &file_proxy_freedom_config_proto_enumTypes[0]
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x ProtocolReplacement) Number() protoreflect.EnumNumber {
|
|
|
|
|
+ return protoreflect.EnumNumber(x)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+// Deprecated: Use ProtocolReplacement.Descriptor instead.
|
|
|
|
|
+func (ProtocolReplacement) EnumDescriptor() ([]byte, []int) {
|
|
|
|
|
+ return file_proxy_freedom_config_proto_rawDescGZIP(), []int{0}
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
type Config_DomainStrategy int32
|
|
type Config_DomainStrategy int32
|
|
|
|
|
|
|
|
const (
|
|
const (
|
|
@@ -52,11 +101,11 @@ func (x Config_DomainStrategy) String() string {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (Config_DomainStrategy) Descriptor() protoreflect.EnumDescriptor {
|
|
func (Config_DomainStrategy) Descriptor() protoreflect.EnumDescriptor {
|
|
|
- return file_proxy_freedom_config_proto_enumTypes[0].Descriptor()
|
|
|
|
|
|
|
+ return file_proxy_freedom_config_proto_enumTypes[1].Descriptor()
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (Config_DomainStrategy) Type() protoreflect.EnumType {
|
|
func (Config_DomainStrategy) Type() protoreflect.EnumType {
|
|
|
- return &file_proxy_freedom_config_proto_enumTypes[0]
|
|
|
|
|
|
|
+ return &file_proxy_freedom_config_proto_enumTypes[1]
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (x Config_DomainStrategy) Number() protoreflect.EnumNumber {
|
|
func (x Config_DomainStrategy) Number() protoreflect.EnumNumber {
|
|
@@ -125,6 +174,7 @@ type Config struct {
|
|
|
Timeout uint32 `protobuf:"varint,2,opt,name=timeout,proto3" json:"timeout,omitempty"`
|
|
Timeout uint32 `protobuf:"varint,2,opt,name=timeout,proto3" json:"timeout,omitempty"`
|
|
|
DestinationOverride *DestinationOverride `protobuf:"bytes,3,opt,name=destination_override,json=destinationOverride,proto3" json:"destination_override,omitempty"`
|
|
DestinationOverride *DestinationOverride `protobuf:"bytes,3,opt,name=destination_override,json=destinationOverride,proto3" json:"destination_override,omitempty"`
|
|
|
UserLevel uint32 `protobuf:"varint,4,opt,name=user_level,json=userLevel,proto3" json:"user_level,omitempty"`
|
|
UserLevel uint32 `protobuf:"varint,4,opt,name=user_level,json=userLevel,proto3" json:"user_level,omitempty"`
|
|
|
|
|
+ ProtocolReplacement ProtocolReplacement `protobuf:"varint,5,opt,name=protocol_replacement,json=protocolReplacement,proto3,enum=v2ray.core.proxy.freedom.ProtocolReplacement" json:"protocol_replacement,omitempty"`
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (x *Config) Reset() {
|
|
func (x *Config) Reset() {
|
|
@@ -188,10 +238,20 @@ func (x *Config) GetUserLevel() uint32 {
|
|
|
return 0
|
|
return 0
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+func (x *Config) GetProtocolReplacement() ProtocolReplacement {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.ProtocolReplacement
|
|
|
|
|
+ }
|
|
|
|
|
+ return ProtocolReplacement_IDENTITY
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
type SimplifiedConfig struct {
|
|
type SimplifiedConfig struct {
|
|
|
state protoimpl.MessageState
|
|
state protoimpl.MessageState
|
|
|
sizeCache protoimpl.SizeCache
|
|
sizeCache protoimpl.SizeCache
|
|
|
unknownFields protoimpl.UnknownFields
|
|
unknownFields protoimpl.UnknownFields
|
|
|
|
|
+
|
|
|
|
|
+ DestinationOverride *DestinationOverride `protobuf:"bytes,3,opt,name=destination_override,json=destinationOverride,proto3" json:"destination_override,omitempty"`
|
|
|
|
|
+ ProtocolReplacement ProtocolReplacement `protobuf:"varint,5,opt,name=protocol_replacement,json=protocolReplacement,proto3,enum=v2ray.core.proxy.freedom.ProtocolReplacement" json:"protocol_replacement,omitempty"`
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func (x *SimplifiedConfig) Reset() {
|
|
func (x *SimplifiedConfig) Reset() {
|
|
@@ -226,6 +286,20 @@ func (*SimplifiedConfig) Descriptor() ([]byte, []int) {
|
|
|
return file_proxy_freedom_config_proto_rawDescGZIP(), []int{2}
|
|
return file_proxy_freedom_config_proto_rawDescGZIP(), []int{2}
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+func (x *SimplifiedConfig) GetDestinationOverride() *DestinationOverride {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.DestinationOverride
|
|
|
|
|
+ }
|
|
|
|
|
+ return nil
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
|
|
+func (x *SimplifiedConfig) GetProtocolReplacement() ProtocolReplacement {
|
|
|
|
|
+ if x != nil {
|
|
|
|
|
+ return x.ProtocolReplacement
|
|
|
|
|
+ }
|
|
|
|
|
+ return ProtocolReplacement_IDENTITY
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
var File_proxy_freedom_config_proto protoreflect.FileDescriptor
|
|
var File_proxy_freedom_config_proto protoreflect.FileDescriptor
|
|
|
|
|
|
|
|
var file_proxy_freedom_config_proto_rawDesc = []byte{
|
|
var file_proxy_freedom_config_proto_rawDesc = []byte{
|
|
@@ -242,7 +316,7 @@ var file_proxy_freedom_config_proto_rawDesc = []byte{
|
|
|
0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e,
|
|
0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e,
|
|
|
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e,
|
|
0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x2e,
|
|
|
0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06,
|
|
0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06,
|
|
|
- 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0xc4, 0x02, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
|
|
|
|
|
+ 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x22, 0xa6, 0x03, 0x0a, 0x06, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
|
0x67, 0x12, 0x58, 0x0a, 0x0f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x61,
|
|
0x67, 0x12, 0x58, 0x0a, 0x0f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x61,
|
|
|
0x74, 0x65, 0x67, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x76, 0x32, 0x72,
|
|
0x74, 0x65, 0x67, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x76, 0x32, 0x72,
|
|
|
0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x66, 0x72,
|
|
0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x66, 0x72,
|
|
@@ -258,21 +332,44 @@ var file_proxy_freedom_config_proto_rawDesc = []byte{
|
|
|
0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x52, 0x13, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74,
|
|
0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x52, 0x13, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74,
|
|
|
0x69, 0x6f, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x75,
|
|
0x69, 0x6f, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x75,
|
|
|
0x73, 0x65, 0x72, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
|
|
0x73, 0x65, 0x72, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52,
|
|
|
- 0x09, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x22, 0x41, 0x0a, 0x0e, 0x44, 0x6f,
|
|
|
|
|
- 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x09, 0x0a, 0x05,
|
|
|
|
|
- 0x41, 0x53, 0x5f, 0x49, 0x53, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x55, 0x53, 0x45, 0x5f, 0x49,
|
|
|
|
|
- 0x50, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x53, 0x45, 0x5f, 0x49, 0x50, 0x34, 0x10, 0x02,
|
|
|
|
|
- 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x53, 0x45, 0x5f, 0x49, 0x50, 0x36, 0x10, 0x03, 0x22, 0x2b, 0x0a,
|
|
|
|
|
- 0x10, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x64, 0x43, 0x6f, 0x6e, 0x66, 0x69,
|
|
|
|
|
- 0x67, 0x3a, 0x17, 0x82, 0xb5, 0x18, 0x13, 0x0a, 0x08, 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e,
|
|
|
|
|
- 0x64, 0x12, 0x07, 0x66, 0x72, 0x65, 0x65, 0x64, 0x6f, 0x6d, 0x42, 0x69, 0x0a, 0x1c, 0x63, 0x6f,
|
|
|
|
|
- 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f,
|
|
|
|
|
- 0x78, 0x79, 0x2e, 0x66, 0x72, 0x65, 0x65, 0x64, 0x6f, 0x6d, 0x50, 0x01, 0x5a, 0x2c, 0x67, 0x69,
|
|
|
|
|
- 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x76, 0x32, 0x66, 0x6c, 0x79, 0x2f, 0x76,
|
|
|
|
|
- 0x32, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x35, 0x2f, 0x70, 0x72, 0x6f,
|
|
|
|
|
- 0x78, 0x79, 0x2f, 0x66, 0x72, 0x65, 0x65, 0x64, 0x6f, 0x6d, 0xaa, 0x02, 0x18, 0x56, 0x32, 0x52,
|
|
|
|
|
- 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x46, 0x72,
|
|
|
|
|
- 0x65, 0x65, 0x64, 0x6f, 0x6d, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
|
|
|
|
+ 0x09, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x60, 0x0a, 0x14, 0x70, 0x72,
|
|
|
|
|
+ 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65,
|
|
|
|
|
+ 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79,
|
|
|
|
|
+ 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x66, 0x72, 0x65, 0x65,
|
|
|
|
|
+ 0x64, 0x6f, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x52, 0x65, 0x70, 0x6c,
|
|
|
|
|
+ 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f,
|
|
|
|
|
+ 0x6c, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x22, 0x41, 0x0a, 0x0e,
|
|
|
|
|
+ 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x09,
|
|
|
|
|
+ 0x0a, 0x05, 0x41, 0x53, 0x5f, 0x49, 0x53, 0x10, 0x00, 0x12, 0x0a, 0x0a, 0x06, 0x55, 0x53, 0x45,
|
|
|
|
|
+ 0x5f, 0x49, 0x50, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x53, 0x45, 0x5f, 0x49, 0x50, 0x34,
|
|
|
|
|
+ 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x53, 0x45, 0x5f, 0x49, 0x50, 0x36, 0x10, 0x03, 0x22,
|
|
|
|
|
+ 0xef, 0x01, 0x0a, 0x10, 0x53, 0x69, 0x6d, 0x70, 0x6c, 0x69, 0x66, 0x69, 0x65, 0x64, 0x43, 0x6f,
|
|
|
|
|
+ 0x6e, 0x66, 0x69, 0x67, 0x12, 0x60, 0x0a, 0x14, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74,
|
|
|
|
|
+ 0x69, 0x6f, 0x6e, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01,
|
|
|
|
|
+ 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e,
|
|
|
|
|
+ 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x66, 0x72, 0x65, 0x65, 0x64, 0x6f, 0x6d, 0x2e, 0x44, 0x65,
|
|
|
|
|
+ 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64,
|
|
|
|
|
+ 0x65, 0x52, 0x13, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x76,
|
|
|
|
|
+ 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x12, 0x60, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63,
|
|
|
|
|
+ 0x6f, 0x6c, 0x5f, 0x72, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x05,
|
|
|
|
|
+ 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72,
|
|
|
|
|
+ 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x66, 0x72, 0x65, 0x65, 0x64, 0x6f, 0x6d, 0x2e,
|
|
|
|
|
+ 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x52, 0x65, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d,
|
|
|
|
|
+ 0x65, 0x6e, 0x74, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x52, 0x65, 0x70,
|
|
|
|
|
+ 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x3a, 0x17, 0x82, 0xb5, 0x18, 0x13, 0x0a, 0x08,
|
|
|
|
|
+ 0x6f, 0x75, 0x74, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x12, 0x07, 0x66, 0x72, 0x65, 0x65, 0x64, 0x6f,
|
|
|
|
|
+ 0x6d, 0x2a, 0x41, 0x0a, 0x13, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x63, 0x6f, 0x6c, 0x52, 0x65, 0x70,
|
|
|
|
|
+ 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x44, 0x45, 0x4e,
|
|
|
|
|
+ 0x54, 0x49, 0x54, 0x59, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x46, 0x4f, 0x52, 0x43, 0x45, 0x5f,
|
|
|
|
|
+ 0x54, 0x43, 0x50, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x46, 0x4f, 0x52, 0x43, 0x45, 0x5f, 0x55,
|
|
|
|
|
+ 0x44, 0x50, 0x10, 0x02, 0x42, 0x69, 0x0a, 0x1c, 0x63, 0x6f, 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61,
|
|
|
|
|
+ 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x66, 0x72, 0x65,
|
|
|
|
|
+ 0x65, 0x64, 0x6f, 0x6d, 0x50, 0x01, 0x5a, 0x2c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63,
|
|
|
|
|
+ 0x6f, 0x6d, 0x2f, 0x76, 0x32, 0x66, 0x6c, 0x79, 0x2f, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2d, 0x63,
|
|
|
|
|
+ 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x35, 0x2f, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2f, 0x66, 0x72, 0x65,
|
|
|
|
|
+ 0x65, 0x64, 0x6f, 0x6d, 0xaa, 0x02, 0x18, 0x56, 0x32, 0x52, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72,
|
|
|
|
|
+ 0x65, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x46, 0x72, 0x65, 0x65, 0x64, 0x6f, 0x6d, 0x62,
|
|
|
|
|
+ 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
var (
|
|
@@ -287,24 +384,28 @@ func file_proxy_freedom_config_proto_rawDescGZIP() []byte {
|
|
|
return file_proxy_freedom_config_proto_rawDescData
|
|
return file_proxy_freedom_config_proto_rawDescData
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-var file_proxy_freedom_config_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
|
|
|
|
|
|
|
+var file_proxy_freedom_config_proto_enumTypes = make([]protoimpl.EnumInfo, 2)
|
|
|
var file_proxy_freedom_config_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
|
var file_proxy_freedom_config_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
|
|
-var file_proxy_freedom_config_proto_goTypes = []interface{}{
|
|
|
|
|
- (Config_DomainStrategy)(0), // 0: v2ray.core.proxy.freedom.Config.DomainStrategy
|
|
|
|
|
- (*DestinationOverride)(nil), // 1: v2ray.core.proxy.freedom.DestinationOverride
|
|
|
|
|
- (*Config)(nil), // 2: v2ray.core.proxy.freedom.Config
|
|
|
|
|
- (*SimplifiedConfig)(nil), // 3: v2ray.core.proxy.freedom.SimplifiedConfig
|
|
|
|
|
- (*protocol.ServerEndpoint)(nil), // 4: v2ray.core.common.protocol.ServerEndpoint
|
|
|
|
|
|
|
+var file_proxy_freedom_config_proto_goTypes = []any{
|
|
|
|
|
+ (ProtocolReplacement)(0), // 0: v2ray.core.proxy.freedom.ProtocolReplacement
|
|
|
|
|
+ (Config_DomainStrategy)(0), // 1: v2ray.core.proxy.freedom.Config.DomainStrategy
|
|
|
|
|
+ (*DestinationOverride)(nil), // 2: v2ray.core.proxy.freedom.DestinationOverride
|
|
|
|
|
+ (*Config)(nil), // 3: v2ray.core.proxy.freedom.Config
|
|
|
|
|
+ (*SimplifiedConfig)(nil), // 4: v2ray.core.proxy.freedom.SimplifiedConfig
|
|
|
|
|
+ (*protocol.ServerEndpoint)(nil), // 5: v2ray.core.common.protocol.ServerEndpoint
|
|
|
}
|
|
}
|
|
|
var file_proxy_freedom_config_proto_depIdxs = []int32{
|
|
var file_proxy_freedom_config_proto_depIdxs = []int32{
|
|
|
- 4, // 0: v2ray.core.proxy.freedom.DestinationOverride.server:type_name -> v2ray.core.common.protocol.ServerEndpoint
|
|
|
|
|
- 0, // 1: v2ray.core.proxy.freedom.Config.domain_strategy:type_name -> v2ray.core.proxy.freedom.Config.DomainStrategy
|
|
|
|
|
- 1, // 2: v2ray.core.proxy.freedom.Config.destination_override:type_name -> v2ray.core.proxy.freedom.DestinationOverride
|
|
|
|
|
- 3, // [3:3] is the sub-list for method output_type
|
|
|
|
|
- 3, // [3:3] is the sub-list for method input_type
|
|
|
|
|
- 3, // [3:3] is the sub-list for extension type_name
|
|
|
|
|
- 3, // [3:3] is the sub-list for extension extendee
|
|
|
|
|
- 0, // [0:3] is the sub-list for field type_name
|
|
|
|
|
|
|
+ 5, // 0: v2ray.core.proxy.freedom.DestinationOverride.server:type_name -> v2ray.core.common.protocol.ServerEndpoint
|
|
|
|
|
+ 1, // 1: v2ray.core.proxy.freedom.Config.domain_strategy:type_name -> v2ray.core.proxy.freedom.Config.DomainStrategy
|
|
|
|
|
+ 2, // 2: v2ray.core.proxy.freedom.Config.destination_override:type_name -> v2ray.core.proxy.freedom.DestinationOverride
|
|
|
|
|
+ 0, // 3: v2ray.core.proxy.freedom.Config.protocol_replacement:type_name -> v2ray.core.proxy.freedom.ProtocolReplacement
|
|
|
|
|
+ 2, // 4: v2ray.core.proxy.freedom.SimplifiedConfig.destination_override:type_name -> v2ray.core.proxy.freedom.DestinationOverride
|
|
|
|
|
+ 0, // 5: v2ray.core.proxy.freedom.SimplifiedConfig.protocol_replacement:type_name -> v2ray.core.proxy.freedom.ProtocolReplacement
|
|
|
|
|
+ 6, // [6:6] is the sub-list for method output_type
|
|
|
|
|
+ 6, // [6:6] is the sub-list for method input_type
|
|
|
|
|
+ 6, // [6:6] is the sub-list for extension type_name
|
|
|
|
|
+ 6, // [6:6] is the sub-list for extension extendee
|
|
|
|
|
+ 0, // [0:6] is the sub-list for field type_name
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func init() { file_proxy_freedom_config_proto_init() }
|
|
func init() { file_proxy_freedom_config_proto_init() }
|
|
@@ -313,7 +414,7 @@ func file_proxy_freedom_config_proto_init() {
|
|
|
return
|
|
return
|
|
|
}
|
|
}
|
|
|
if !protoimpl.UnsafeEnabled {
|
|
if !protoimpl.UnsafeEnabled {
|
|
|
- file_proxy_freedom_config_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
|
+ file_proxy_freedom_config_proto_msgTypes[0].Exporter = func(v any, i int) any {
|
|
|
switch v := v.(*DestinationOverride); i {
|
|
switch v := v.(*DestinationOverride); i {
|
|
|
case 0:
|
|
case 0:
|
|
|
return &v.state
|
|
return &v.state
|
|
@@ -325,7 +426,7 @@ func file_proxy_freedom_config_proto_init() {
|
|
|
return nil
|
|
return nil
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- file_proxy_freedom_config_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
|
+ file_proxy_freedom_config_proto_msgTypes[1].Exporter = func(v any, i int) any {
|
|
|
switch v := v.(*Config); i {
|
|
switch v := v.(*Config); i {
|
|
|
case 0:
|
|
case 0:
|
|
|
return &v.state
|
|
return &v.state
|
|
@@ -337,7 +438,7 @@ func file_proxy_freedom_config_proto_init() {
|
|
|
return nil
|
|
return nil
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- file_proxy_freedom_config_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
|
|
|
|
|
|
+ file_proxy_freedom_config_proto_msgTypes[2].Exporter = func(v any, i int) any {
|
|
|
switch v := v.(*SimplifiedConfig); i {
|
|
switch v := v.(*SimplifiedConfig); i {
|
|
|
case 0:
|
|
case 0:
|
|
|
return &v.state
|
|
return &v.state
|
|
@@ -355,7 +456,7 @@ func file_proxy_freedom_config_proto_init() {
|
|
|
File: protoimpl.DescBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
|
RawDescriptor: file_proxy_freedom_config_proto_rawDesc,
|
|
RawDescriptor: file_proxy_freedom_config_proto_rawDesc,
|
|
|
- NumEnums: 1,
|
|
|
|
|
|
|
+ NumEnums: 2,
|
|
|
NumMessages: 3,
|
|
NumMessages: 3,
|
|
|
NumExtensions: 0,
|
|
NumExtensions: 0,
|
|
|
NumServices: 0,
|
|
NumServices: 0,
|