mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
5.5 KiB
128 lines
5.5 KiB
package core |
|
|
|
import proto "github.com/golang/protobuf/proto" |
|
import fmt "fmt" |
|
import math "math" |
|
import v2ray_core_app_proxyman "v2ray.com/core/app/proxyman" |
|
import v2ray_core_common_serial "v2ray.com/core/common/serial" |
|
import v2ray_core_transport "v2ray.com/core/transport" |
|
|
|
// Reference imports to suppress errors if they are not otherwise used. |
|
var _ = proto.Marshal |
|
var _ = fmt.Errorf |
|
var _ = math.Inf |
|
|
|
// This is a compile-time assertion to ensure that this generated file |
|
// is compatible with the proto package it is being compiled against. |
|
// A compilation error at this line likely means your copy of the |
|
// proto package needs to be updated. |
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package |
|
|
|
// Configuration serialization format. |
|
type ConfigFormat int32 |
|
|
|
const ( |
|
ConfigFormat_Protobuf ConfigFormat = 0 |
|
ConfigFormat_JSON ConfigFormat = 1 |
|
) |
|
|
|
var ConfigFormat_name = map[int32]string{ |
|
0: "Protobuf", |
|
1: "JSON", |
|
} |
|
var ConfigFormat_value = map[string]int32{ |
|
"Protobuf": 0, |
|
"JSON": 1, |
|
} |
|
|
|
func (x ConfigFormat) String() string { |
|
return proto.EnumName(ConfigFormat_name, int32(x)) |
|
} |
|
func (ConfigFormat) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } |
|
|
|
// Master config of V2Ray. V2Ray Core takes this config as input and functions accordingly. |
|
type Config struct { |
|
// Inbound handler configurations. Must have at least one item. |
|
Inbound []*v2ray_core_app_proxyman.InboundHandlerConfig `protobuf:"bytes,1,rep,name=inbound" json:"inbound,omitempty"` |
|
// Outbound handler configurations. Must have at least one item. The first item is used as default for routing. |
|
Outbound []*v2ray_core_app_proxyman.OutboundHandlerConfig `protobuf:"bytes,2,rep,name=outbound" json:"outbound,omitempty"` |
|
// App configuration. Must be one in the app directory. |
|
App []*v2ray_core_common_serial.TypedMessage `protobuf:"bytes,4,rep,name=app" json:"app,omitempty"` |
|
// Transport settings. |
|
Transport *v2ray_core_transport.Config `protobuf:"bytes,5,opt,name=transport" json:"transport,omitempty"` |
|
// Configuration for extensions. The config may not work if corresponding extension is not loaded into V2Ray. |
|
// V2Ray will ignore such config during initialization. |
|
Extension []*v2ray_core_common_serial.TypedMessage `protobuf:"bytes,6,rep,name=extension" json:"extension,omitempty"` |
|
} |
|
|
|
func (m *Config) Reset() { *m = Config{} } |
|
func (m *Config) String() string { return proto.CompactTextString(m) } |
|
func (*Config) ProtoMessage() {} |
|
func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} } |
|
|
|
func (m *Config) GetInbound() []*v2ray_core_app_proxyman.InboundHandlerConfig { |
|
if m != nil { |
|
return m.Inbound |
|
} |
|
return nil |
|
} |
|
|
|
func (m *Config) GetOutbound() []*v2ray_core_app_proxyman.OutboundHandlerConfig { |
|
if m != nil { |
|
return m.Outbound |
|
} |
|
return nil |
|
} |
|
|
|
func (m *Config) GetApp() []*v2ray_core_common_serial.TypedMessage { |
|
if m != nil { |
|
return m.App |
|
} |
|
return nil |
|
} |
|
|
|
func (m *Config) GetTransport() *v2ray_core_transport.Config { |
|
if m != nil { |
|
return m.Transport |
|
} |
|
return nil |
|
} |
|
|
|
func (m *Config) GetExtension() []*v2ray_core_common_serial.TypedMessage { |
|
if m != nil { |
|
return m.Extension |
|
} |
|
return nil |
|
} |
|
|
|
func init() { |
|
proto.RegisterType((*Config)(nil), "v2ray.core.Config") |
|
proto.RegisterEnum("v2ray.core.ConfigFormat", ConfigFormat_name, ConfigFormat_value) |
|
} |
|
|
|
func init() { proto.RegisterFile("v2ray.com/core/config.proto", fileDescriptor0) } |
|
|
|
var fileDescriptor0 = []byte{ |
|
// 336 bytes of a gzipped FileDescriptorProto |
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x91, 0xcd, 0x4a, 0xf3, 0x40, |
|
0x18, 0x85, 0xbf, 0xb4, 0xf9, 0x6a, 0xfa, 0xb6, 0x48, 0x99, 0x55, 0xa8, 0x2e, 0x8a, 0xd0, 0x52, |
|
0x04, 0x27, 0x12, 0x37, 0xe2, 0xd2, 0x8a, 0x3f, 0x05, 0x6d, 0xa9, 0xe2, 0xc2, 0x8d, 0x4c, 0xd3, |
|
0x69, 0x09, 0x74, 0xe6, 0x1d, 0x26, 0x53, 0x69, 0x6e, 0xc9, 0x9b, 0xf2, 0x56, 0x24, 0x99, 0xfe, |
|
0xa5, 0xe2, 0xc2, 0x55, 0x20, 0x73, 0x9e, 0xe7, 0x4c, 0x4e, 0xe0, 0xe8, 0x23, 0xd4, 0x2c, 0xa5, |
|
0x11, 0x8a, 0x20, 0x42, 0xcd, 0x83, 0x08, 0xe5, 0x34, 0x9e, 0x51, 0xa5, 0xd1, 0x20, 0x81, 0xf5, |
|
0xa1, 0xe6, 0xcd, 0xee, 0x5e, 0x90, 0x29, 0x15, 0x28, 0x8d, 0xcb, 0x54, 0x30, 0x59, 0xa0, 0x9a, |
|
0xe7, 0x3f, 0x94, 0x42, 0xa0, 0x0c, 0x12, 0xae, 0x63, 0x36, 0x0f, 0x4c, 0xaa, 0xf8, 0xe4, 0x5d, |
|
0xf0, 0x24, 0x61, 0x33, 0xbe, 0x22, 0xda, 0x7b, 0x84, 0xd1, 0x4c, 0x26, 0x0a, 0xb5, 0x29, 0x88, |
|
0x4f, 0xbe, 0x4a, 0x50, 0xe9, 0xe5, 0x2f, 0xc8, 0x1d, 0x1c, 0xc4, 0x72, 0x8c, 0x0b, 0x39, 0xf1, |
|
0x9d, 0x56, 0xb9, 0x5b, 0x0b, 0xcf, 0xe8, 0xf6, 0xae, 0x94, 0x29, 0x45, 0xd7, 0x77, 0xa3, 0x0f, |
|
0x36, 0x77, 0xcf, 0xe4, 0x64, 0xce, 0xb5, 0xe5, 0x47, 0x6b, 0x9a, 0xf4, 0xc1, 0xc3, 0x85, 0xb1, |
|
0xa6, 0x52, 0x6e, 0xa2, 0xbf, 0x9a, 0x06, 0xab, 0x60, 0x51, 0xb5, 0xe1, 0xc9, 0x25, 0x94, 0x99, |
|
0x52, 0xbe, 0x9b, 0x6b, 0x3a, 0xbb, 0x1a, 0x3b, 0x01, 0xb5, 0x13, 0xd0, 0x97, 0x6c, 0x82, 0x47, |
|
0xbb, 0xc0, 0x28, 0x43, 0xc8, 0x15, 0x54, 0x37, 0xdf, 0xec, 0xff, 0x6f, 0x39, 0xdd, 0x5a, 0x78, |
|
0xbc, 0xcb, 0x6f, 0x0e, 0xe9, 0xaa, 0x74, 0x1b, 0x27, 0x37, 0x50, 0xe5, 0x4b, 0xc3, 0x65, 0x12, |
|
0xa3, 0xf4, 0x2b, 0x7f, 0xea, 0xde, 0x82, 0x7d, 0xd7, 0x2b, 0x37, 0xdc, 0xd3, 0x0e, 0xd4, 0x6d, |
|
0xc1, 0x2d, 0x6a, 0xc1, 0x0c, 0xa9, 0x83, 0x37, 0xcc, 0xa6, 0x1f, 0x2f, 0xa6, 0x8d, 0x7f, 0xc4, |
|
0x03, 0xb7, 0xff, 0x3c, 0x78, 0x6a, 0x38, 0xd7, 0x6d, 0x38, 0x8c, 0x50, 0xec, 0xb4, 0x0c, 0x9d, |
|
0x37, 0x37, 0x7b, 0x7e, 0x96, 0xe0, 0x35, 0x1c, 0xb1, 0x94, 0xf6, 0x50, 0xf3, 0x71, 0x25, 0xff, |
|
0x6f, 0x17, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x62, 0x93, 0x6d, 0x78, 0x65, 0x02, 0x00, 0x00, |
|
}
|
|
|