config.pb.go 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. package dns
  2. import (
  3. fmt "fmt"
  4. proto "github.com/golang/protobuf/proto"
  5. math "math"
  6. net "v2ray.com/core/common/net"
  7. )
  8. // Reference imports to suppress errors if they are not otherwise used.
  9. var _ = proto.Marshal
  10. var _ = fmt.Errorf
  11. var _ = math.Inf
  12. // This is a compile-time assertion to ensure that this generated file
  13. // is compatible with the proto package it is being compiled against.
  14. // A compilation error at this line likely means your copy of the
  15. // proto package needs to be updated.
  16. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  17. type DomainMatchingType int32
  18. const (
  19. DomainMatchingType_Full DomainMatchingType = 0
  20. DomainMatchingType_Subdomain DomainMatchingType = 1
  21. DomainMatchingType_Keyword DomainMatchingType = 2
  22. DomainMatchingType_Regex DomainMatchingType = 3
  23. )
  24. var DomainMatchingType_name = map[int32]string{
  25. 0: "Full",
  26. 1: "Subdomain",
  27. 2: "Keyword",
  28. 3: "Regex",
  29. }
  30. var DomainMatchingType_value = map[string]int32{
  31. "Full": 0,
  32. "Subdomain": 1,
  33. "Keyword": 2,
  34. "Regex": 3,
  35. }
  36. func (x DomainMatchingType) String() string {
  37. return proto.EnumName(DomainMatchingType_name, int32(x))
  38. }
  39. func (DomainMatchingType) EnumDescriptor() ([]byte, []int) {
  40. return fileDescriptor_ed5695198e3def8f, []int{0}
  41. }
  42. type NameServer struct {
  43. Address *net.Endpoint `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
  44. PrioritizedDomain []*NameServer_PriorityDomain `protobuf:"bytes,2,rep,name=prioritized_domain,json=prioritizedDomain,proto3" json:"prioritized_domain,omitempty"`
  45. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  46. XXX_unrecognized []byte `json:"-"`
  47. XXX_sizecache int32 `json:"-"`
  48. }
  49. func (m *NameServer) Reset() { *m = NameServer{} }
  50. func (m *NameServer) String() string { return proto.CompactTextString(m) }
  51. func (*NameServer) ProtoMessage() {}
  52. func (*NameServer) Descriptor() ([]byte, []int) {
  53. return fileDescriptor_ed5695198e3def8f, []int{0}
  54. }
  55. func (m *NameServer) XXX_Unmarshal(b []byte) error {
  56. return xxx_messageInfo_NameServer.Unmarshal(m, b)
  57. }
  58. func (m *NameServer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  59. return xxx_messageInfo_NameServer.Marshal(b, m, deterministic)
  60. }
  61. func (m *NameServer) XXX_Merge(src proto.Message) {
  62. xxx_messageInfo_NameServer.Merge(m, src)
  63. }
  64. func (m *NameServer) XXX_Size() int {
  65. return xxx_messageInfo_NameServer.Size(m)
  66. }
  67. func (m *NameServer) XXX_DiscardUnknown() {
  68. xxx_messageInfo_NameServer.DiscardUnknown(m)
  69. }
  70. var xxx_messageInfo_NameServer proto.InternalMessageInfo
  71. func (m *NameServer) GetAddress() *net.Endpoint {
  72. if m != nil {
  73. return m.Address
  74. }
  75. return nil
  76. }
  77. func (m *NameServer) GetPrioritizedDomain() []*NameServer_PriorityDomain {
  78. if m != nil {
  79. return m.PrioritizedDomain
  80. }
  81. return nil
  82. }
  83. type NameServer_PriorityDomain struct {
  84. Type DomainMatchingType `protobuf:"varint,1,opt,name=type,proto3,enum=v2ray.core.app.dns.DomainMatchingType" json:"type,omitempty"`
  85. Domain string `protobuf:"bytes,2,opt,name=domain,proto3" json:"domain,omitempty"`
  86. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  87. XXX_unrecognized []byte `json:"-"`
  88. XXX_sizecache int32 `json:"-"`
  89. }
  90. func (m *NameServer_PriorityDomain) Reset() { *m = NameServer_PriorityDomain{} }
  91. func (m *NameServer_PriorityDomain) String() string { return proto.CompactTextString(m) }
  92. func (*NameServer_PriorityDomain) ProtoMessage() {}
  93. func (*NameServer_PriorityDomain) Descriptor() ([]byte, []int) {
  94. return fileDescriptor_ed5695198e3def8f, []int{0, 0}
  95. }
  96. func (m *NameServer_PriorityDomain) XXX_Unmarshal(b []byte) error {
  97. return xxx_messageInfo_NameServer_PriorityDomain.Unmarshal(m, b)
  98. }
  99. func (m *NameServer_PriorityDomain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  100. return xxx_messageInfo_NameServer_PriorityDomain.Marshal(b, m, deterministic)
  101. }
  102. func (m *NameServer_PriorityDomain) XXX_Merge(src proto.Message) {
  103. xxx_messageInfo_NameServer_PriorityDomain.Merge(m, src)
  104. }
  105. func (m *NameServer_PriorityDomain) XXX_Size() int {
  106. return xxx_messageInfo_NameServer_PriorityDomain.Size(m)
  107. }
  108. func (m *NameServer_PriorityDomain) XXX_DiscardUnknown() {
  109. xxx_messageInfo_NameServer_PriorityDomain.DiscardUnknown(m)
  110. }
  111. var xxx_messageInfo_NameServer_PriorityDomain proto.InternalMessageInfo
  112. func (m *NameServer_PriorityDomain) GetType() DomainMatchingType {
  113. if m != nil {
  114. return m.Type
  115. }
  116. return DomainMatchingType_Full
  117. }
  118. func (m *NameServer_PriorityDomain) GetDomain() string {
  119. if m != nil {
  120. return m.Domain
  121. }
  122. return ""
  123. }
  124. type Config struct {
  125. // Nameservers used by this DNS. Only traditional UDP servers are support at the moment.
  126. // A special value 'localhost' as a domain address can be set to use DNS on local system.
  127. NameServers []*net.Endpoint `protobuf:"bytes,1,rep,name=NameServers,proto3" json:"NameServers,omitempty"` // Deprecated: Do not use.
  128. // NameServer list used by this DNS client.
  129. NameServer []*NameServer `protobuf:"bytes,5,rep,name=name_server,json=nameServer,proto3" json:"name_server,omitempty"`
  130. // Static hosts. Domain to IP.
  131. // Deprecated. Use static_hosts.
  132. Hosts map[string]*net.IPOrDomain `protobuf:"bytes,2,rep,name=Hosts,proto3" json:"Hosts,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` // Deprecated: Do not use.
  133. // Client IP for EDNS client subnet. Must be 4 bytes (IPv4) or 16 bytes (IPv6).
  134. ClientIp []byte `protobuf:"bytes,3,opt,name=client_ip,json=clientIp,proto3" json:"client_ip,omitempty"`
  135. StaticHosts []*Config_HostMapping `protobuf:"bytes,4,rep,name=static_hosts,json=staticHosts,proto3" json:"static_hosts,omitempty"`
  136. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  137. XXX_unrecognized []byte `json:"-"`
  138. XXX_sizecache int32 `json:"-"`
  139. }
  140. func (m *Config) Reset() { *m = Config{} }
  141. func (m *Config) String() string { return proto.CompactTextString(m) }
  142. func (*Config) ProtoMessage() {}
  143. func (*Config) Descriptor() ([]byte, []int) {
  144. return fileDescriptor_ed5695198e3def8f, []int{1}
  145. }
  146. func (m *Config) XXX_Unmarshal(b []byte) error {
  147. return xxx_messageInfo_Config.Unmarshal(m, b)
  148. }
  149. func (m *Config) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  150. return xxx_messageInfo_Config.Marshal(b, m, deterministic)
  151. }
  152. func (m *Config) XXX_Merge(src proto.Message) {
  153. xxx_messageInfo_Config.Merge(m, src)
  154. }
  155. func (m *Config) XXX_Size() int {
  156. return xxx_messageInfo_Config.Size(m)
  157. }
  158. func (m *Config) XXX_DiscardUnknown() {
  159. xxx_messageInfo_Config.DiscardUnknown(m)
  160. }
  161. var xxx_messageInfo_Config proto.InternalMessageInfo
  162. // Deprecated: Do not use.
  163. func (m *Config) GetNameServers() []*net.Endpoint {
  164. if m != nil {
  165. return m.NameServers
  166. }
  167. return nil
  168. }
  169. func (m *Config) GetNameServer() []*NameServer {
  170. if m != nil {
  171. return m.NameServer
  172. }
  173. return nil
  174. }
  175. // Deprecated: Do not use.
  176. func (m *Config) GetHosts() map[string]*net.IPOrDomain {
  177. if m != nil {
  178. return m.Hosts
  179. }
  180. return nil
  181. }
  182. func (m *Config) GetClientIp() []byte {
  183. if m != nil {
  184. return m.ClientIp
  185. }
  186. return nil
  187. }
  188. func (m *Config) GetStaticHosts() []*Config_HostMapping {
  189. if m != nil {
  190. return m.StaticHosts
  191. }
  192. return nil
  193. }
  194. type Config_HostMapping struct {
  195. Type DomainMatchingType `protobuf:"varint,1,opt,name=type,proto3,enum=v2ray.core.app.dns.DomainMatchingType" json:"type,omitempty"`
  196. Domain string `protobuf:"bytes,2,opt,name=domain,proto3" json:"domain,omitempty"`
  197. Ip [][]byte `protobuf:"bytes,3,rep,name=ip,proto3" json:"ip,omitempty"`
  198. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  199. XXX_unrecognized []byte `json:"-"`
  200. XXX_sizecache int32 `json:"-"`
  201. }
  202. func (m *Config_HostMapping) Reset() { *m = Config_HostMapping{} }
  203. func (m *Config_HostMapping) String() string { return proto.CompactTextString(m) }
  204. func (*Config_HostMapping) ProtoMessage() {}
  205. func (*Config_HostMapping) Descriptor() ([]byte, []int) {
  206. return fileDescriptor_ed5695198e3def8f, []int{1, 1}
  207. }
  208. func (m *Config_HostMapping) XXX_Unmarshal(b []byte) error {
  209. return xxx_messageInfo_Config_HostMapping.Unmarshal(m, b)
  210. }
  211. func (m *Config_HostMapping) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  212. return xxx_messageInfo_Config_HostMapping.Marshal(b, m, deterministic)
  213. }
  214. func (m *Config_HostMapping) XXX_Merge(src proto.Message) {
  215. xxx_messageInfo_Config_HostMapping.Merge(m, src)
  216. }
  217. func (m *Config_HostMapping) XXX_Size() int {
  218. return xxx_messageInfo_Config_HostMapping.Size(m)
  219. }
  220. func (m *Config_HostMapping) XXX_DiscardUnknown() {
  221. xxx_messageInfo_Config_HostMapping.DiscardUnknown(m)
  222. }
  223. var xxx_messageInfo_Config_HostMapping proto.InternalMessageInfo
  224. func (m *Config_HostMapping) GetType() DomainMatchingType {
  225. if m != nil {
  226. return m.Type
  227. }
  228. return DomainMatchingType_Full
  229. }
  230. func (m *Config_HostMapping) GetDomain() string {
  231. if m != nil {
  232. return m.Domain
  233. }
  234. return ""
  235. }
  236. func (m *Config_HostMapping) GetIp() [][]byte {
  237. if m != nil {
  238. return m.Ip
  239. }
  240. return nil
  241. }
  242. func init() {
  243. proto.RegisterType((*NameServer)(nil), "v2ray.core.app.dns.NameServer")
  244. proto.RegisterType((*NameServer_PriorityDomain)(nil), "v2ray.core.app.dns.NameServer.PriorityDomain")
  245. proto.RegisterType((*Config)(nil), "v2ray.core.app.dns.Config")
  246. proto.RegisterMapType((map[string]*net.IPOrDomain)(nil), "v2ray.core.app.dns.Config.HostsEntry")
  247. proto.RegisterType((*Config_HostMapping)(nil), "v2ray.core.app.dns.Config.HostMapping")
  248. proto.RegisterEnum("v2ray.core.app.dns.DomainMatchingType", DomainMatchingType_name, DomainMatchingType_value)
  249. }
  250. func init() {
  251. proto.RegisterFile("v2ray.com/core/app/dns/config.proto", fileDescriptor_ed5695198e3def8f)
  252. }
  253. var fileDescriptor_ed5695198e3def8f = []byte{
  254. // 523 bytes of a gzipped FileDescriptorProto
  255. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0xd1, 0x6e, 0xd3, 0x30,
  256. 0x18, 0x85, 0x49, 0xd2, 0x76, 0xeb, 0x9f, 0x52, 0x15, 0x5f, 0x4c, 0x55, 0x91, 0xa0, 0x0c, 0x31,
  257. 0x2a, 0x10, 0x8e, 0x14, 0x90, 0x80, 0xdd, 0x4c, 0x6c, 0x2b, 0xa2, 0x42, 0x83, 0xca, 0x43, 0x5c,
  258. 0x00, 0x52, 0xe5, 0x25, 0xa6, 0xb3, 0x68, 0x6c, 0x63, 0xbb, 0x85, 0xf0, 0x06, 0x88, 0x37, 0xe1,
  259. 0x29, 0x51, 0xed, 0x8e, 0x16, 0xd6, 0x01, 0x37, 0xdc, 0xd5, 0xee, 0xf9, 0xfe, 0x73, 0x72, 0xfe,
  260. 0x04, 0x6e, 0xce, 0x52, 0x4d, 0x4b, 0x9c, 0xc9, 0x22, 0xc9, 0xa4, 0x66, 0x09, 0x55, 0x2a, 0xc9,
  261. 0x85, 0x49, 0x32, 0x29, 0xde, 0xf3, 0x31, 0x56, 0x5a, 0x5a, 0x89, 0xd0, 0x99, 0x48, 0x33, 0x4c,
  262. 0x95, 0xc2, 0xb9, 0x30, 0x9d, 0xdb, 0xbf, 0x81, 0x99, 0x2c, 0x0a, 0x29, 0x12, 0xc1, 0x6c, 0x42,
  263. 0xf3, 0x5c, 0x33, 0x63, 0x3c, 0xdc, 0xb9, 0x7b, 0xb1, 0x30, 0x67, 0xc6, 0x72, 0x41, 0x2d, 0x97,
  264. 0xc2, 0x8b, 0xb7, 0xbf, 0x85, 0x00, 0x2f, 0x68, 0xc1, 0x8e, 0x99, 0x9e, 0x31, 0x8d, 0x1e, 0xc3,
  265. 0xc6, 0x62, 0x58, 0x3b, 0xe8, 0x06, 0xbd, 0x38, 0xbd, 0x8e, 0x57, 0xa2, 0xf8, 0x49, 0x58, 0x30,
  266. 0x8b, 0xfb, 0x22, 0x57, 0x92, 0x0b, 0x4b, 0xce, 0xf4, 0xe8, 0x1d, 0x20, 0xa5, 0xb9, 0xd4, 0xdc,
  267. 0xf2, 0x2f, 0x2c, 0x1f, 0xe5, 0xb2, 0xa0, 0x5c, 0xb4, 0xc3, 0x6e, 0xd4, 0x8b, 0xd3, 0x7b, 0xf8,
  268. 0xfc, 0x03, 0xe1, 0xa5, 0x2d, 0x1e, 0x7a, 0xb0, 0x3c, 0x74, 0x10, 0xb9, 0xb2, 0x32, 0xc8, 0x5f,
  269. 0x75, 0x72, 0x68, 0xfe, 0x2a, 0x42, 0xbb, 0x50, 0xb1, 0xa5, 0x62, 0x2e, 0x67, 0x33, 0xdd, 0x59,
  270. 0xe7, 0xe0, 0x95, 0x47, 0xd4, 0x66, 0xa7, 0x5c, 0x8c, 0x5f, 0x95, 0x8a, 0x11, 0xc7, 0xa0, 0x2d,
  271. 0xa8, 0xfd, 0xcc, 0x17, 0xf4, 0xea, 0x64, 0x71, 0xda, 0xfe, 0x5a, 0x81, 0xda, 0x81, 0x5b, 0x04,
  272. 0xea, 0x43, 0xbc, 0x0c, 0x38, 0x6f, 0x23, 0xfa, 0x87, 0x36, 0xf6, 0xc3, 0x76, 0x40, 0x56, 0x39,
  273. 0xb4, 0x07, 0xb1, 0xa0, 0x05, 0x1b, 0x19, 0x77, 0x6e, 0x57, 0xdd, 0x98, 0x6b, 0x7f, 0xae, 0x83,
  274. 0x80, 0x58, 0x6e, 0x64, 0x0f, 0xaa, 0xcf, 0xa4, 0xb1, 0x66, 0xd1, 0xe4, 0xad, 0x75, 0xa8, 0x8f,
  275. 0x8c, 0x9d, 0xae, 0x2f, 0xac, 0x2e, 0x5d, 0x0e, 0xcf, 0xa1, 0xab, 0x50, 0xcf, 0x26, 0x9c, 0x09,
  276. 0x3b, 0xe2, 0xaa, 0x1d, 0x75, 0x83, 0x5e, 0x83, 0x6c, 0xfa, 0x8b, 0x81, 0x42, 0x03, 0x68, 0x18,
  277. 0x4b, 0x2d, 0xcf, 0x46, 0xa7, 0xce, 0xa4, 0xe2, 0x4c, 0x76, 0xfe, 0x62, 0x72, 0x44, 0x95, 0xe2,
  278. 0x62, 0x4c, 0x62, 0xcf, 0x3a, 0x9f, 0xce, 0x5b, 0x80, 0x65, 0x00, 0xd4, 0x82, 0xe8, 0x03, 0x2b,
  279. 0xdd, 0x72, 0xea, 0x64, 0xfe, 0x13, 0x3d, 0x84, 0xea, 0x8c, 0x4e, 0xa6, 0xcc, 0x55, 0x1e, 0xa7,
  280. 0x37, 0x2e, 0xa8, 0x72, 0x30, 0x7c, 0xa9, 0x17, 0xaf, 0x81, 0xd7, 0xef, 0x86, 0x8f, 0x82, 0xce,
  281. 0x47, 0x88, 0x57, 0x8c, 0xff, 0xc7, 0xee, 0x51, 0x13, 0x42, 0x57, 0x50, 0xd4, 0x6b, 0x90, 0x90,
  282. 0xab, 0x3b, 0x7d, 0x40, 0xe7, 0x67, 0xa0, 0x4d, 0xa8, 0x3c, 0x9d, 0x4e, 0x26, 0xad, 0x4b, 0xe8,
  283. 0x32, 0xd4, 0x8f, 0xa7, 0x27, 0x1e, 0x6e, 0x05, 0x28, 0x86, 0x8d, 0xe7, 0xac, 0xfc, 0x24, 0x75,
  284. 0xde, 0x0a, 0x51, 0x1d, 0xaa, 0x84, 0x8d, 0xd9, 0xe7, 0x56, 0xb4, 0xff, 0x00, 0xb6, 0x32, 0x59,
  285. 0xac, 0x49, 0x38, 0x0c, 0xde, 0x44, 0xb9, 0x30, 0xdf, 0x43, 0xf4, 0x3a, 0x25, 0xb4, 0xc4, 0x07,
  286. 0xf3, 0xff, 0x9e, 0x28, 0x85, 0x0f, 0x85, 0x39, 0xa9, 0xb9, 0xaf, 0xf3, 0xfe, 0x8f, 0x00, 0x00,
  287. 0x00, 0xff, 0xff, 0x32, 0xd5, 0xea, 0x6d, 0x2e, 0x04, 0x00, 0x00,
  288. }