config.pb.go 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  1. package router
  2. import proto "github.com/golang/protobuf/proto"
  3. import fmt "fmt"
  4. import math "math"
  5. import v2ray_core_common_net "v2ray.com/core/common/net"
  6. import v2ray_core_common_net1 "v2ray.com/core/common/net"
  7. // Reference imports to suppress errors if they are not otherwise used.
  8. var _ = proto.Marshal
  9. var _ = fmt.Errorf
  10. var _ = math.Inf
  11. // This is a compile-time assertion to ensure that this generated file
  12. // is compatible with the proto package it is being compiled against.
  13. // A compilation error at this line likely means your copy of the
  14. // proto package needs to be updated.
  15. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  16. // Type of domain value.
  17. type Domain_Type int32
  18. const (
  19. // The value is used as is.
  20. Domain_Plain Domain_Type = 0
  21. // The value is used as a regular expression.
  22. Domain_Regex Domain_Type = 1
  23. // The value is a domain.
  24. Domain_Domain Domain_Type = 2
  25. )
  26. var Domain_Type_name = map[int32]string{
  27. 0: "Plain",
  28. 1: "Regex",
  29. 2: "Domain",
  30. }
  31. var Domain_Type_value = map[string]int32{
  32. "Plain": 0,
  33. "Regex": 1,
  34. "Domain": 2,
  35. }
  36. func (x Domain_Type) String() string {
  37. return proto.EnumName(Domain_Type_name, int32(x))
  38. }
  39. func (Domain_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} }
  40. type Config_DomainStrategy int32
  41. const (
  42. // Use domain as is.
  43. Config_AsIs Config_DomainStrategy = 0
  44. // Always resolve IP for domains.
  45. Config_UseIp Config_DomainStrategy = 1
  46. // Resolve to IP if the domain doesn't match any rules.
  47. Config_IpIfNonMatch Config_DomainStrategy = 2
  48. )
  49. var Config_DomainStrategy_name = map[int32]string{
  50. 0: "AsIs",
  51. 1: "UseIp",
  52. 2: "IpIfNonMatch",
  53. }
  54. var Config_DomainStrategy_value = map[string]int32{
  55. "AsIs": 0,
  56. "UseIp": 1,
  57. "IpIfNonMatch": 2,
  58. }
  59. func (x Config_DomainStrategy) String() string {
  60. return proto.EnumName(Config_DomainStrategy_name, int32(x))
  61. }
  62. func (Config_DomainStrategy) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{5, 0} }
  63. // Domain for routing decision.
  64. type Domain struct {
  65. // Domain matching type.
  66. Type Domain_Type `protobuf:"varint,1,opt,name=type,enum=v2ray.core.app.router.Domain_Type" json:"type,omitempty"`
  67. // Domain value.
  68. Value string `protobuf:"bytes,2,opt,name=value" json:"value,omitempty"`
  69. }
  70. func (m *Domain) Reset() { *m = Domain{} }
  71. func (m *Domain) String() string { return proto.CompactTextString(m) }
  72. func (*Domain) ProtoMessage() {}
  73. func (*Domain) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
  74. func (m *Domain) GetType() Domain_Type {
  75. if m != nil {
  76. return m.Type
  77. }
  78. return Domain_Plain
  79. }
  80. func (m *Domain) GetValue() string {
  81. if m != nil {
  82. return m.Value
  83. }
  84. return ""
  85. }
  86. // IP for routing decision, in CIDR form.
  87. type CIDR struct {
  88. // IP address, should be either 4 or 16 bytes.
  89. Ip []byte `protobuf:"bytes,1,opt,name=ip,proto3" json:"ip,omitempty"`
  90. // Number of leading ones in the network mask.
  91. Prefix uint32 `protobuf:"varint,2,opt,name=prefix" json:"prefix,omitempty"`
  92. }
  93. func (m *CIDR) Reset() { *m = CIDR{} }
  94. func (m *CIDR) String() string { return proto.CompactTextString(m) }
  95. func (*CIDR) ProtoMessage() {}
  96. func (*CIDR) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
  97. func (m *CIDR) GetIp() []byte {
  98. if m != nil {
  99. return m.Ip
  100. }
  101. return nil
  102. }
  103. func (m *CIDR) GetPrefix() uint32 {
  104. if m != nil {
  105. return m.Prefix
  106. }
  107. return 0
  108. }
  109. type GeoIP struct {
  110. CountryCode string `protobuf:"bytes,1,opt,name=country_code,json=countryCode" json:"country_code,omitempty"`
  111. Cidr []*CIDR `protobuf:"bytes,2,rep,name=cidr" json:"cidr,omitempty"`
  112. }
  113. func (m *GeoIP) Reset() { *m = GeoIP{} }
  114. func (m *GeoIP) String() string { return proto.CompactTextString(m) }
  115. func (*GeoIP) ProtoMessage() {}
  116. func (*GeoIP) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
  117. func (m *GeoIP) GetCountryCode() string {
  118. if m != nil {
  119. return m.CountryCode
  120. }
  121. return ""
  122. }
  123. func (m *GeoIP) GetCidr() []*CIDR {
  124. if m != nil {
  125. return m.Cidr
  126. }
  127. return nil
  128. }
  129. type GeoIPList struct {
  130. Entry []*GeoIP `protobuf:"bytes,1,rep,name=entry" json:"entry,omitempty"`
  131. }
  132. func (m *GeoIPList) Reset() { *m = GeoIPList{} }
  133. func (m *GeoIPList) String() string { return proto.CompactTextString(m) }
  134. func (*GeoIPList) ProtoMessage() {}
  135. func (*GeoIPList) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
  136. func (m *GeoIPList) GetEntry() []*GeoIP {
  137. if m != nil {
  138. return m.Entry
  139. }
  140. return nil
  141. }
  142. type RoutingRule struct {
  143. Tag string `protobuf:"bytes,1,opt,name=tag" json:"tag,omitempty"`
  144. Domain []*Domain `protobuf:"bytes,2,rep,name=domain" json:"domain,omitempty"`
  145. Cidr []*CIDR `protobuf:"bytes,3,rep,name=cidr" json:"cidr,omitempty"`
  146. PortRange *v2ray_core_common_net.PortRange `protobuf:"bytes,4,opt,name=port_range,json=portRange" json:"port_range,omitempty"`
  147. NetworkList *v2ray_core_common_net1.NetworkList `protobuf:"bytes,5,opt,name=network_list,json=networkList" json:"network_list,omitempty"`
  148. SourceCidr []*CIDR `protobuf:"bytes,6,rep,name=source_cidr,json=sourceCidr" json:"source_cidr,omitempty"`
  149. UserEmail []string `protobuf:"bytes,7,rep,name=user_email,json=userEmail" json:"user_email,omitempty"`
  150. InboundTag []string `protobuf:"bytes,8,rep,name=inbound_tag,json=inboundTag" json:"inbound_tag,omitempty"`
  151. }
  152. func (m *RoutingRule) Reset() { *m = RoutingRule{} }
  153. func (m *RoutingRule) String() string { return proto.CompactTextString(m) }
  154. func (*RoutingRule) ProtoMessage() {}
  155. func (*RoutingRule) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
  156. func (m *RoutingRule) GetTag() string {
  157. if m != nil {
  158. return m.Tag
  159. }
  160. return ""
  161. }
  162. func (m *RoutingRule) GetDomain() []*Domain {
  163. if m != nil {
  164. return m.Domain
  165. }
  166. return nil
  167. }
  168. func (m *RoutingRule) GetCidr() []*CIDR {
  169. if m != nil {
  170. return m.Cidr
  171. }
  172. return nil
  173. }
  174. func (m *RoutingRule) GetPortRange() *v2ray_core_common_net.PortRange {
  175. if m != nil {
  176. return m.PortRange
  177. }
  178. return nil
  179. }
  180. func (m *RoutingRule) GetNetworkList() *v2ray_core_common_net1.NetworkList {
  181. if m != nil {
  182. return m.NetworkList
  183. }
  184. return nil
  185. }
  186. func (m *RoutingRule) GetSourceCidr() []*CIDR {
  187. if m != nil {
  188. return m.SourceCidr
  189. }
  190. return nil
  191. }
  192. func (m *RoutingRule) GetUserEmail() []string {
  193. if m != nil {
  194. return m.UserEmail
  195. }
  196. return nil
  197. }
  198. func (m *RoutingRule) GetInboundTag() []string {
  199. if m != nil {
  200. return m.InboundTag
  201. }
  202. return nil
  203. }
  204. type Config struct {
  205. DomainStrategy Config_DomainStrategy `protobuf:"varint,1,opt,name=domain_strategy,json=domainStrategy,enum=v2ray.core.app.router.Config_DomainStrategy" json:"domain_strategy,omitempty"`
  206. Rule []*RoutingRule `protobuf:"bytes,2,rep,name=rule" json:"rule,omitempty"`
  207. }
  208. func (m *Config) Reset() { *m = Config{} }
  209. func (m *Config) String() string { return proto.CompactTextString(m) }
  210. func (*Config) ProtoMessage() {}
  211. func (*Config) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
  212. func (m *Config) GetDomainStrategy() Config_DomainStrategy {
  213. if m != nil {
  214. return m.DomainStrategy
  215. }
  216. return Config_AsIs
  217. }
  218. func (m *Config) GetRule() []*RoutingRule {
  219. if m != nil {
  220. return m.Rule
  221. }
  222. return nil
  223. }
  224. func init() {
  225. proto.RegisterType((*Domain)(nil), "v2ray.core.app.router.Domain")
  226. proto.RegisterType((*CIDR)(nil), "v2ray.core.app.router.CIDR")
  227. proto.RegisterType((*GeoIP)(nil), "v2ray.core.app.router.GeoIP")
  228. proto.RegisterType((*GeoIPList)(nil), "v2ray.core.app.router.GeoIPList")
  229. proto.RegisterType((*RoutingRule)(nil), "v2ray.core.app.router.RoutingRule")
  230. proto.RegisterType((*Config)(nil), "v2ray.core.app.router.Config")
  231. proto.RegisterEnum("v2ray.core.app.router.Domain_Type", Domain_Type_name, Domain_Type_value)
  232. proto.RegisterEnum("v2ray.core.app.router.Config_DomainStrategy", Config_DomainStrategy_name, Config_DomainStrategy_value)
  233. }
  234. func init() { proto.RegisterFile("v2ray.com/core/app/router/config.proto", fileDescriptor0) }
  235. var fileDescriptor0 = []byte{
  236. // 595 bytes of a gzipped FileDescriptorProto
  237. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xc1, 0x6e, 0xd3, 0x4c,
  238. 0x10, 0xc7, 0x3f, 0x3b, 0x89, 0xbf, 0x7a, 0x1c, 0x82, 0xb5, 0xa2, 0xc8, 0x14, 0x2a, 0x82, 0x85,
  239. 0x20, 0x07, 0x64, 0x4b, 0x41, 0xc0, 0x05, 0x54, 0x95, 0xb4, 0x42, 0x91, 0xa0, 0x8a, 0x96, 0x96,
  240. 0x03, 0x1c, 0xac, 0xad, 0xb3, 0x35, 0x2b, 0x92, 0xdd, 0xd5, 0x7a, 0x5d, 0x9a, 0x1b, 0x2f, 0xc0,
  241. 0x8b, 0xf0, 0x34, 0x3c, 0x12, 0xda, 0x5d, 0x17, 0x5a, 0xd4, 0x00, 0xb7, 0x9d, 0xf1, 0x6f, 0x66,
  242. 0xfe, 0x33, 0x9e, 0x81, 0x07, 0xa7, 0x63, 0x45, 0x56, 0x59, 0x29, 0x96, 0x79, 0x29, 0x14, 0xcd,
  243. 0x89, 0x94, 0xb9, 0x12, 0x8d, 0xa6, 0x2a, 0x2f, 0x05, 0x3f, 0x61, 0x55, 0x26, 0x95, 0xd0, 0x02,
  244. 0x6d, 0x9e, 0x73, 0x8a, 0x66, 0x44, 0xca, 0xcc, 0x31, 0x5b, 0xf7, 0x7f, 0x0b, 0x2f, 0xc5, 0x72,
  245. 0x29, 0x78, 0xce, 0xa9, 0xce, 0xa5, 0x50, 0xda, 0x05, 0x6f, 0x3d, 0x5c, 0x4f, 0x71, 0xaa, 0x3f,
  246. 0x0b, 0xf5, 0xc9, 0x81, 0xe9, 0x17, 0x0f, 0x82, 0x3d, 0xb1, 0x24, 0x8c, 0xa3, 0xa7, 0xd0, 0xd5,
  247. 0x2b, 0x49, 0x13, 0x6f, 0xe8, 0x8d, 0x06, 0xe3, 0x34, 0xbb, 0xb2, 0x7e, 0xe6, 0xe0, 0xec, 0x70,
  248. 0x25, 0x29, 0xb6, 0x3c, 0xba, 0x01, 0xbd, 0x53, 0xb2, 0x68, 0x68, 0xe2, 0x0f, 0xbd, 0x51, 0x88,
  249. 0x9d, 0x91, 0x8e, 0xa0, 0x6b, 0x18, 0x14, 0x42, 0x6f, 0xb6, 0x20, 0x8c, 0xc7, 0xff, 0x99, 0x27,
  250. 0xa6, 0x15, 0x3d, 0x8b, 0x3d, 0x04, 0xe7, 0x55, 0x63, 0x3f, 0xcd, 0xa0, 0x3b, 0x99, 0xee, 0x61,
  251. 0x34, 0x00, 0x9f, 0x49, 0x5b, 0xbd, 0x8f, 0x7d, 0x26, 0xd1, 0x4d, 0x08, 0xa4, 0xa2, 0x27, 0xec,
  252. 0xcc, 0x26, 0xbe, 0x86, 0x5b, 0x2b, 0xfd, 0x00, 0xbd, 0x57, 0x54, 0x4c, 0x67, 0xe8, 0x1e, 0xf4,
  253. 0x4b, 0xd1, 0x70, 0xad, 0x56, 0x45, 0x29, 0xe6, 0x4e, 0x78, 0x88, 0xa3, 0xd6, 0x37, 0x11, 0x73,
  254. 0x8a, 0x72, 0xe8, 0x96, 0x6c, 0xae, 0x12, 0x7f, 0xd8, 0x19, 0x45, 0xe3, 0xdb, 0x6b, 0x7a, 0x32,
  255. 0xe5, 0xb1, 0x05, 0xd3, 0x1d, 0x08, 0x6d, 0xf2, 0xd7, 0xac, 0xd6, 0x68, 0x0c, 0x3d, 0x6a, 0x52,
  256. 0x25, 0x9e, 0x0d, 0xbf, 0xb3, 0x26, 0xdc, 0x06, 0x60, 0x87, 0xa6, 0x5f, 0x3b, 0x10, 0x61, 0xd1,
  257. 0x68, 0xc6, 0x2b, 0xdc, 0x2c, 0x28, 0x8a, 0xa1, 0xa3, 0x49, 0xd5, 0x6a, 0x33, 0x4f, 0xf4, 0x04,
  258. 0x82, 0xb9, 0xed, 0xbd, 0x55, 0xb5, 0xfd, 0xc7, 0x49, 0xe3, 0x16, 0xfe, 0xd9, 0x4a, 0xe7, 0x1f,
  259. 0x5b, 0x41, 0x3b, 0x00, 0x66, 0x23, 0x0a, 0x45, 0x78, 0x45, 0x93, 0xee, 0xd0, 0x1b, 0x45, 0xe3,
  260. 0xe1, 0xc5, 0x30, 0xb7, 0x14, 0x19, 0xa7, 0x3a, 0x9b, 0x09, 0xa5, 0xb1, 0xe1, 0x70, 0x28, 0xcf,
  261. 0x9f, 0x68, 0x1f, 0xfa, 0xed, 0xb2, 0x14, 0x0b, 0x56, 0xeb, 0xa4, 0x67, 0x53, 0xa4, 0x6b, 0x52,
  262. 0x1c, 0x38, 0xd4, 0x0c, 0x0e, 0x47, 0xfc, 0x97, 0x81, 0x9e, 0x43, 0x54, 0x8b, 0x46, 0x95, 0xb4,
  263. 0xb0, 0xfa, 0x83, 0xbf, 0xeb, 0x07, 0xc7, 0x4f, 0x4c, 0x17, 0xdb, 0x00, 0x4d, 0x4d, 0x55, 0x41,
  264. 0x97, 0x84, 0x2d, 0x92, 0xff, 0x87, 0x9d, 0x51, 0x88, 0x43, 0xe3, 0xd9, 0x37, 0x0e, 0x74, 0x17,
  265. 0x22, 0xc6, 0x8f, 0x45, 0xc3, 0xe7, 0x85, 0x19, 0xf3, 0x86, 0xfd, 0x0e, 0xad, 0xeb, 0x90, 0x54,
  266. 0xe9, 0x77, 0x0f, 0x82, 0x89, 0xbd, 0x2b, 0x74, 0x04, 0xd7, 0xdd, 0x2c, 0x8b, 0x5a, 0x2b, 0xa2,
  267. 0x69, 0xb5, 0x6a, 0x77, 0xfd, 0xd1, 0x3a, 0x31, 0xee, 0x1e, 0xdd, 0x8f, 0x78, 0xdb, 0xc6, 0xe0,
  268. 0xc1, 0xfc, 0x92, 0x6d, 0xee, 0x46, 0x35, 0x0b, 0xda, 0xfe, 0xcd, 0x75, 0x77, 0x73, 0x61, 0x27,
  269. 0xb0, 0xe5, 0xd3, 0x67, 0x30, 0xb8, 0x9c, 0x19, 0x6d, 0x40, 0x77, 0xb7, 0x9e, 0xd6, 0xee, 0x54,
  270. 0x8e, 0x6a, 0x3a, 0x95, 0xb1, 0x87, 0x62, 0xe8, 0x4f, 0xe5, 0xf4, 0xe4, 0x40, 0xf0, 0x37, 0x44,
  271. 0x97, 0x1f, 0x63, 0xff, 0xe5, 0x0b, 0xb8, 0x55, 0x8a, 0xe5, 0xd5, 0x75, 0x66, 0xde, 0xfb, 0xc0,
  272. 0xbd, 0xbe, 0xf9, 0x9b, 0xef, 0xc6, 0x98, 0xac, 0xb2, 0x89, 0x21, 0x76, 0xa5, 0xb4, 0x12, 0xa8,
  273. 0x3a, 0x0e, 0xec, 0xe5, 0x3f, 0xfe, 0x11, 0x00, 0x00, 0xff, 0xff, 0x5a, 0x12, 0x0e, 0x89, 0x89,
  274. 0x04, 0x00, 0x00,
  275. }