config.pb.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.35.1
  4. // protoc v5.28.2
  5. // source: proxy/wireguard/config.proto
  6. package wireguard
  7. import (
  8. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. reflect "reflect"
  11. sync "sync"
  12. )
  13. const (
  14. // Verify that this generated code is sufficiently up-to-date.
  15. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  16. // Verify that runtime/protoimpl is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  18. )
  19. type DeviceConfig_DomainStrategy int32
  20. const (
  21. DeviceConfig_FORCE_IP DeviceConfig_DomainStrategy = 0
  22. DeviceConfig_FORCE_IP4 DeviceConfig_DomainStrategy = 1
  23. DeviceConfig_FORCE_IP6 DeviceConfig_DomainStrategy = 2
  24. DeviceConfig_FORCE_IP46 DeviceConfig_DomainStrategy = 3
  25. DeviceConfig_FORCE_IP64 DeviceConfig_DomainStrategy = 4
  26. )
  27. // Enum value maps for DeviceConfig_DomainStrategy.
  28. var (
  29. DeviceConfig_DomainStrategy_name = map[int32]string{
  30. 0: "FORCE_IP",
  31. 1: "FORCE_IP4",
  32. 2: "FORCE_IP6",
  33. 3: "FORCE_IP46",
  34. 4: "FORCE_IP64",
  35. }
  36. DeviceConfig_DomainStrategy_value = map[string]int32{
  37. "FORCE_IP": 0,
  38. "FORCE_IP4": 1,
  39. "FORCE_IP6": 2,
  40. "FORCE_IP46": 3,
  41. "FORCE_IP64": 4,
  42. }
  43. )
  44. func (x DeviceConfig_DomainStrategy) Enum() *DeviceConfig_DomainStrategy {
  45. p := new(DeviceConfig_DomainStrategy)
  46. *p = x
  47. return p
  48. }
  49. func (x DeviceConfig_DomainStrategy) String() string {
  50. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  51. }
  52. func (DeviceConfig_DomainStrategy) Descriptor() protoreflect.EnumDescriptor {
  53. return file_proxy_wireguard_config_proto_enumTypes[0].Descriptor()
  54. }
  55. func (DeviceConfig_DomainStrategy) Type() protoreflect.EnumType {
  56. return &file_proxy_wireguard_config_proto_enumTypes[0]
  57. }
  58. func (x DeviceConfig_DomainStrategy) Number() protoreflect.EnumNumber {
  59. return protoreflect.EnumNumber(x)
  60. }
  61. // Deprecated: Use DeviceConfig_DomainStrategy.Descriptor instead.
  62. func (DeviceConfig_DomainStrategy) EnumDescriptor() ([]byte, []int) {
  63. return file_proxy_wireguard_config_proto_rawDescGZIP(), []int{1, 0}
  64. }
  65. type PeerConfig struct {
  66. state protoimpl.MessageState
  67. sizeCache protoimpl.SizeCache
  68. unknownFields protoimpl.UnknownFields
  69. PublicKey string `protobuf:"bytes,1,opt,name=public_key,json=publicKey,proto3" json:"public_key,omitempty"`
  70. PreSharedKey string `protobuf:"bytes,2,opt,name=pre_shared_key,json=preSharedKey,proto3" json:"pre_shared_key,omitempty"`
  71. Endpoint string `protobuf:"bytes,3,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
  72. KeepAlive uint32 `protobuf:"varint,4,opt,name=keep_alive,json=keepAlive,proto3" json:"keep_alive,omitempty"`
  73. AllowedIps []string `protobuf:"bytes,5,rep,name=allowed_ips,json=allowedIps,proto3" json:"allowed_ips,omitempty"`
  74. }
  75. func (x *PeerConfig) Reset() {
  76. *x = PeerConfig{}
  77. mi := &file_proxy_wireguard_config_proto_msgTypes[0]
  78. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  79. ms.StoreMessageInfo(mi)
  80. }
  81. func (x *PeerConfig) String() string {
  82. return protoimpl.X.MessageStringOf(x)
  83. }
  84. func (*PeerConfig) ProtoMessage() {}
  85. func (x *PeerConfig) ProtoReflect() protoreflect.Message {
  86. mi := &file_proxy_wireguard_config_proto_msgTypes[0]
  87. if x != nil {
  88. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  89. if ms.LoadMessageInfo() == nil {
  90. ms.StoreMessageInfo(mi)
  91. }
  92. return ms
  93. }
  94. return mi.MessageOf(x)
  95. }
  96. // Deprecated: Use PeerConfig.ProtoReflect.Descriptor instead.
  97. func (*PeerConfig) Descriptor() ([]byte, []int) {
  98. return file_proxy_wireguard_config_proto_rawDescGZIP(), []int{0}
  99. }
  100. func (x *PeerConfig) GetPublicKey() string {
  101. if x != nil {
  102. return x.PublicKey
  103. }
  104. return ""
  105. }
  106. func (x *PeerConfig) GetPreSharedKey() string {
  107. if x != nil {
  108. return x.PreSharedKey
  109. }
  110. return ""
  111. }
  112. func (x *PeerConfig) GetEndpoint() string {
  113. if x != nil {
  114. return x.Endpoint
  115. }
  116. return ""
  117. }
  118. func (x *PeerConfig) GetKeepAlive() uint32 {
  119. if x != nil {
  120. return x.KeepAlive
  121. }
  122. return 0
  123. }
  124. func (x *PeerConfig) GetAllowedIps() []string {
  125. if x != nil {
  126. return x.AllowedIps
  127. }
  128. return nil
  129. }
  130. type DeviceConfig struct {
  131. state protoimpl.MessageState
  132. sizeCache protoimpl.SizeCache
  133. unknownFields protoimpl.UnknownFields
  134. SecretKey string `protobuf:"bytes,1,opt,name=secret_key,json=secretKey,proto3" json:"secret_key,omitempty"`
  135. Endpoint []string `protobuf:"bytes,2,rep,name=endpoint,proto3" json:"endpoint,omitempty"`
  136. Peers []*PeerConfig `protobuf:"bytes,3,rep,name=peers,proto3" json:"peers,omitempty"`
  137. Mtu int32 `protobuf:"varint,4,opt,name=mtu,proto3" json:"mtu,omitempty"`
  138. NumWorkers int32 `protobuf:"varint,5,opt,name=num_workers,json=numWorkers,proto3" json:"num_workers,omitempty"`
  139. Reserved []byte `protobuf:"bytes,6,opt,name=reserved,proto3" json:"reserved,omitempty"`
  140. DomainStrategy DeviceConfig_DomainStrategy `protobuf:"varint,7,opt,name=domain_strategy,json=domainStrategy,proto3,enum=xray.proxy.wireguard.DeviceConfig_DomainStrategy" json:"domain_strategy,omitempty"`
  141. IsClient bool `protobuf:"varint,8,opt,name=is_client,json=isClient,proto3" json:"is_client,omitempty"`
  142. NoKernelTun bool `protobuf:"varint,9,opt,name=no_kernel_tun,json=noKernelTun,proto3" json:"no_kernel_tun,omitempty"`
  143. }
  144. func (x *DeviceConfig) Reset() {
  145. *x = DeviceConfig{}
  146. mi := &file_proxy_wireguard_config_proto_msgTypes[1]
  147. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  148. ms.StoreMessageInfo(mi)
  149. }
  150. func (x *DeviceConfig) String() string {
  151. return protoimpl.X.MessageStringOf(x)
  152. }
  153. func (*DeviceConfig) ProtoMessage() {}
  154. func (x *DeviceConfig) ProtoReflect() protoreflect.Message {
  155. mi := &file_proxy_wireguard_config_proto_msgTypes[1]
  156. if x != nil {
  157. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  158. if ms.LoadMessageInfo() == nil {
  159. ms.StoreMessageInfo(mi)
  160. }
  161. return ms
  162. }
  163. return mi.MessageOf(x)
  164. }
  165. // Deprecated: Use DeviceConfig.ProtoReflect.Descriptor instead.
  166. func (*DeviceConfig) Descriptor() ([]byte, []int) {
  167. return file_proxy_wireguard_config_proto_rawDescGZIP(), []int{1}
  168. }
  169. func (x *DeviceConfig) GetSecretKey() string {
  170. if x != nil {
  171. return x.SecretKey
  172. }
  173. return ""
  174. }
  175. func (x *DeviceConfig) GetEndpoint() []string {
  176. if x != nil {
  177. return x.Endpoint
  178. }
  179. return nil
  180. }
  181. func (x *DeviceConfig) GetPeers() []*PeerConfig {
  182. if x != nil {
  183. return x.Peers
  184. }
  185. return nil
  186. }
  187. func (x *DeviceConfig) GetMtu() int32 {
  188. if x != nil {
  189. return x.Mtu
  190. }
  191. return 0
  192. }
  193. func (x *DeviceConfig) GetNumWorkers() int32 {
  194. if x != nil {
  195. return x.NumWorkers
  196. }
  197. return 0
  198. }
  199. func (x *DeviceConfig) GetReserved() []byte {
  200. if x != nil {
  201. return x.Reserved
  202. }
  203. return nil
  204. }
  205. func (x *DeviceConfig) GetDomainStrategy() DeviceConfig_DomainStrategy {
  206. if x != nil {
  207. return x.DomainStrategy
  208. }
  209. return DeviceConfig_FORCE_IP
  210. }
  211. func (x *DeviceConfig) GetIsClient() bool {
  212. if x != nil {
  213. return x.IsClient
  214. }
  215. return false
  216. }
  217. func (x *DeviceConfig) GetNoKernelTun() bool {
  218. if x != nil {
  219. return x.NoKernelTun
  220. }
  221. return false
  222. }
  223. var File_proxy_wireguard_config_proto protoreflect.FileDescriptor
  224. var file_proxy_wireguard_config_proto_rawDesc = []byte{
  225. 0x0a, 0x1c, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2f, 0x77, 0x69, 0x72, 0x65, 0x67, 0x75, 0x61, 0x72,
  226. 0x64, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x14,
  227. 0x78, 0x72, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x77, 0x69, 0x72, 0x65, 0x67,
  228. 0x75, 0x61, 0x72, 0x64, 0x22, 0xad, 0x01, 0x0a, 0x0a, 0x50, 0x65, 0x65, 0x72, 0x43, 0x6f, 0x6e,
  229. 0x66, 0x69, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f, 0x6b, 0x65,
  230. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b,
  231. 0x65, 0x79, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x72, 0x65, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64,
  232. 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x72, 0x65, 0x53,
  233. 0x68, 0x61, 0x72, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x70,
  234. 0x6f, 0x69, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x6e, 0x64, 0x70,
  235. 0x6f, 0x69, 0x6e, 0x74, 0x12, 0x1d, 0x0a, 0x0a, 0x6b, 0x65, 0x65, 0x70, 0x5f, 0x61, 0x6c, 0x69,
  236. 0x76, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x09, 0x6b, 0x65, 0x65, 0x70, 0x41, 0x6c,
  237. 0x69, 0x76, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65, 0x64, 0x5f, 0x69,
  238. 0x70, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x65,
  239. 0x64, 0x49, 0x70, 0x73, 0x22, 0xcb, 0x03, 0x0a, 0x0c, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43,
  240. 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x5f,
  241. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x65, 0x63, 0x72, 0x65,
  242. 0x74, 0x4b, 0x65, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74,
  243. 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74,
  244. 0x12, 0x36, 0x0a, 0x05, 0x70, 0x65, 0x65, 0x72, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32,
  245. 0x20, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x77, 0x69, 0x72,
  246. 0x65, 0x67, 0x75, 0x61, 0x72, 0x64, 0x2e, 0x50, 0x65, 0x65, 0x72, 0x43, 0x6f, 0x6e, 0x66, 0x69,
  247. 0x67, 0x52, 0x05, 0x70, 0x65, 0x65, 0x72, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x74, 0x75, 0x18,
  248. 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6d, 0x74, 0x75, 0x12, 0x1f, 0x0a, 0x0b, 0x6e, 0x75,
  249. 0x6d, 0x5f, 0x77, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52,
  250. 0x0a, 0x6e, 0x75, 0x6d, 0x57, 0x6f, 0x72, 0x6b, 0x65, 0x72, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x72,
  251. 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x08, 0x72,
  252. 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x12, 0x5a, 0x0a, 0x0f, 0x64, 0x6f, 0x6d, 0x61, 0x69,
  253. 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e,
  254. 0x32, 0x31, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x77, 0x69,
  255. 0x72, 0x65, 0x67, 0x75, 0x61, 0x72, 0x64, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x43, 0x6f,
  256. 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74,
  257. 0x65, 0x67, 0x79, 0x52, 0x0e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x74, 0x72, 0x61, 0x74,
  258. 0x65, 0x67, 0x79, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  259. 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74,
  260. 0x12, 0x22, 0x0a, 0x0d, 0x6e, 0x6f, 0x5f, 0x6b, 0x65, 0x72, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x75,
  261. 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x6e, 0x6f, 0x4b, 0x65, 0x72, 0x6e, 0x65,
  262. 0x6c, 0x54, 0x75, 0x6e, 0x22, 0x5c, 0x0a, 0x0e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x74,
  263. 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0x0c, 0x0a, 0x08, 0x46, 0x4f, 0x52, 0x43, 0x45, 0x5f,
  264. 0x49, 0x50, 0x10, 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x46, 0x4f, 0x52, 0x43, 0x45, 0x5f, 0x49, 0x50,
  265. 0x34, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x46, 0x4f, 0x52, 0x43, 0x45, 0x5f, 0x49, 0x50, 0x36,
  266. 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x46, 0x4f, 0x52, 0x43, 0x45, 0x5f, 0x49, 0x50, 0x34, 0x36,
  267. 0x10, 0x03, 0x12, 0x0e, 0x0a, 0x0a, 0x46, 0x4f, 0x52, 0x43, 0x45, 0x5f, 0x49, 0x50, 0x36, 0x34,
  268. 0x10, 0x04, 0x42, 0x5e, 0x0a, 0x18, 0x63, 0x6f, 0x6d, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x70,
  269. 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x77, 0x69, 0x72, 0x65, 0x67, 0x75, 0x61, 0x72, 0x64, 0x50, 0x01,
  270. 0x5a, 0x29, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x78, 0x74, 0x6c,
  271. 0x73, 0x2f, 0x78, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x78,
  272. 0x79, 0x2f, 0x77, 0x69, 0x72, 0x65, 0x67, 0x75, 0x61, 0x72, 0x64, 0xaa, 0x02, 0x14, 0x58, 0x72,
  273. 0x61, 0x79, 0x2e, 0x50, 0x72, 0x6f, 0x78, 0x79, 0x2e, 0x57, 0x69, 0x72, 0x65, 0x47, 0x75, 0x61,
  274. 0x72, 0x64, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  275. }
  276. var (
  277. file_proxy_wireguard_config_proto_rawDescOnce sync.Once
  278. file_proxy_wireguard_config_proto_rawDescData = file_proxy_wireguard_config_proto_rawDesc
  279. )
  280. func file_proxy_wireguard_config_proto_rawDescGZIP() []byte {
  281. file_proxy_wireguard_config_proto_rawDescOnce.Do(func() {
  282. file_proxy_wireguard_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_proxy_wireguard_config_proto_rawDescData)
  283. })
  284. return file_proxy_wireguard_config_proto_rawDescData
  285. }
  286. var file_proxy_wireguard_config_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
  287. var file_proxy_wireguard_config_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
  288. var file_proxy_wireguard_config_proto_goTypes = []any{
  289. (DeviceConfig_DomainStrategy)(0), // 0: xray.proxy.wireguard.DeviceConfig.DomainStrategy
  290. (*PeerConfig)(nil), // 1: xray.proxy.wireguard.PeerConfig
  291. (*DeviceConfig)(nil), // 2: xray.proxy.wireguard.DeviceConfig
  292. }
  293. var file_proxy_wireguard_config_proto_depIdxs = []int32{
  294. 1, // 0: xray.proxy.wireguard.DeviceConfig.peers:type_name -> xray.proxy.wireguard.PeerConfig
  295. 0, // 1: xray.proxy.wireguard.DeviceConfig.domain_strategy:type_name -> xray.proxy.wireguard.DeviceConfig.DomainStrategy
  296. 2, // [2:2] is the sub-list for method output_type
  297. 2, // [2:2] is the sub-list for method input_type
  298. 2, // [2:2] is the sub-list for extension type_name
  299. 2, // [2:2] is the sub-list for extension extendee
  300. 0, // [0:2] is the sub-list for field type_name
  301. }
  302. func init() { file_proxy_wireguard_config_proto_init() }
  303. func file_proxy_wireguard_config_proto_init() {
  304. if File_proxy_wireguard_config_proto != nil {
  305. return
  306. }
  307. type x struct{}
  308. out := protoimpl.TypeBuilder{
  309. File: protoimpl.DescBuilder{
  310. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  311. RawDescriptor: file_proxy_wireguard_config_proto_rawDesc,
  312. NumEnums: 1,
  313. NumMessages: 2,
  314. NumExtensions: 0,
  315. NumServices: 0,
  316. },
  317. GoTypes: file_proxy_wireguard_config_proto_goTypes,
  318. DependencyIndexes: file_proxy_wireguard_config_proto_depIdxs,
  319. EnumInfos: file_proxy_wireguard_config_proto_enumTypes,
  320. MessageInfos: file_proxy_wireguard_config_proto_msgTypes,
  321. }.Build()
  322. File_proxy_wireguard_config_proto = out.File
  323. file_proxy_wireguard_config_proto_rawDesc = nil
  324. file_proxy_wireguard_config_proto_goTypes = nil
  325. file_proxy_wireguard_config_proto_depIdxs = nil
  326. }