network.pb.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.34.2
  4. // protoc v5.28.0
  5. // source: common/net/network.proto
  6. package net
  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 Network int32
  20. const (
  21. Network_Unknown Network = 0
  22. Network_TCP Network = 2
  23. Network_UDP Network = 3
  24. Network_UNIX Network = 4
  25. )
  26. // Enum value maps for Network.
  27. var (
  28. Network_name = map[int32]string{
  29. 0: "Unknown",
  30. 2: "TCP",
  31. 3: "UDP",
  32. 4: "UNIX",
  33. }
  34. Network_value = map[string]int32{
  35. "Unknown": 0,
  36. "TCP": 2,
  37. "UDP": 3,
  38. "UNIX": 4,
  39. }
  40. )
  41. func (x Network) Enum() *Network {
  42. p := new(Network)
  43. *p = x
  44. return p
  45. }
  46. func (x Network) String() string {
  47. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  48. }
  49. func (Network) Descriptor() protoreflect.EnumDescriptor {
  50. return file_common_net_network_proto_enumTypes[0].Descriptor()
  51. }
  52. func (Network) Type() protoreflect.EnumType {
  53. return &file_common_net_network_proto_enumTypes[0]
  54. }
  55. func (x Network) Number() protoreflect.EnumNumber {
  56. return protoreflect.EnumNumber(x)
  57. }
  58. // Deprecated: Use Network.Descriptor instead.
  59. func (Network) EnumDescriptor() ([]byte, []int) {
  60. return file_common_net_network_proto_rawDescGZIP(), []int{0}
  61. }
  62. // NetworkList is a list of Networks.
  63. type NetworkList struct {
  64. state protoimpl.MessageState
  65. sizeCache protoimpl.SizeCache
  66. unknownFields protoimpl.UnknownFields
  67. Network []Network `protobuf:"varint,1,rep,packed,name=network,proto3,enum=xray.common.net.Network" json:"network,omitempty"`
  68. }
  69. func (x *NetworkList) Reset() {
  70. *x = NetworkList{}
  71. if protoimpl.UnsafeEnabled {
  72. mi := &file_common_net_network_proto_msgTypes[0]
  73. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  74. ms.StoreMessageInfo(mi)
  75. }
  76. }
  77. func (x *NetworkList) String() string {
  78. return protoimpl.X.MessageStringOf(x)
  79. }
  80. func (*NetworkList) ProtoMessage() {}
  81. func (x *NetworkList) ProtoReflect() protoreflect.Message {
  82. mi := &file_common_net_network_proto_msgTypes[0]
  83. if protoimpl.UnsafeEnabled && x != nil {
  84. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  85. if ms.LoadMessageInfo() == nil {
  86. ms.StoreMessageInfo(mi)
  87. }
  88. return ms
  89. }
  90. return mi.MessageOf(x)
  91. }
  92. // Deprecated: Use NetworkList.ProtoReflect.Descriptor instead.
  93. func (*NetworkList) Descriptor() ([]byte, []int) {
  94. return file_common_net_network_proto_rawDescGZIP(), []int{0}
  95. }
  96. func (x *NetworkList) GetNetwork() []Network {
  97. if x != nil {
  98. return x.Network
  99. }
  100. return nil
  101. }
  102. var File_common_net_network_proto protoreflect.FileDescriptor
  103. var file_common_net_network_proto_rawDesc = []byte{
  104. 0x0a, 0x18, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6e, 0x65, 0x74, 0x2f, 0x6e, 0x65, 0x74,
  105. 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0f, 0x78, 0x72, 0x61, 0x79,
  106. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x22, 0x41, 0x0a, 0x0b, 0x4e,
  107. 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x32, 0x0a, 0x07, 0x6e, 0x65,
  108. 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x78, 0x72,
  109. 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x2e, 0x4e, 0x65,
  110. 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x52, 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2a, 0x32,
  111. 0x0a, 0x07, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x6e, 0x6b,
  112. 0x6e, 0x6f, 0x77, 0x6e, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x43, 0x50, 0x10, 0x02, 0x12,
  113. 0x07, 0x0a, 0x03, 0x55, 0x44, 0x50, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x55, 0x4e, 0x49, 0x58,
  114. 0x10, 0x04, 0x42, 0x4f, 0x0a, 0x13, 0x63, 0x6f, 0x6d, 0x2e, 0x78, 0x72, 0x61, 0x79, 0x2e, 0x63,
  115. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x50, 0x01, 0x5a, 0x24, 0x67, 0x69, 0x74,
  116. 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x78, 0x74, 0x6c, 0x73, 0x2f, 0x78, 0x72, 0x61,
  117. 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6e, 0x65,
  118. 0x74, 0xaa, 0x02, 0x0f, 0x58, 0x72, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  119. 0x4e, 0x65, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  120. }
  121. var (
  122. file_common_net_network_proto_rawDescOnce sync.Once
  123. file_common_net_network_proto_rawDescData = file_common_net_network_proto_rawDesc
  124. )
  125. func file_common_net_network_proto_rawDescGZIP() []byte {
  126. file_common_net_network_proto_rawDescOnce.Do(func() {
  127. file_common_net_network_proto_rawDescData = protoimpl.X.CompressGZIP(file_common_net_network_proto_rawDescData)
  128. })
  129. return file_common_net_network_proto_rawDescData
  130. }
  131. var file_common_net_network_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
  132. var file_common_net_network_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
  133. var file_common_net_network_proto_goTypes = []any{
  134. (Network)(0), // 0: xray.common.net.Network
  135. (*NetworkList)(nil), // 1: xray.common.net.NetworkList
  136. }
  137. var file_common_net_network_proto_depIdxs = []int32{
  138. 0, // 0: xray.common.net.NetworkList.network:type_name -> xray.common.net.Network
  139. 1, // [1:1] is the sub-list for method output_type
  140. 1, // [1:1] is the sub-list for method input_type
  141. 1, // [1:1] is the sub-list for extension type_name
  142. 1, // [1:1] is the sub-list for extension extendee
  143. 0, // [0:1] is the sub-list for field type_name
  144. }
  145. func init() { file_common_net_network_proto_init() }
  146. func file_common_net_network_proto_init() {
  147. if File_common_net_network_proto != nil {
  148. return
  149. }
  150. if !protoimpl.UnsafeEnabled {
  151. file_common_net_network_proto_msgTypes[0].Exporter = func(v any, i int) any {
  152. switch v := v.(*NetworkList); i {
  153. case 0:
  154. return &v.state
  155. case 1:
  156. return &v.sizeCache
  157. case 2:
  158. return &v.unknownFields
  159. default:
  160. return nil
  161. }
  162. }
  163. }
  164. type x struct{}
  165. out := protoimpl.TypeBuilder{
  166. File: protoimpl.DescBuilder{
  167. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  168. RawDescriptor: file_common_net_network_proto_rawDesc,
  169. NumEnums: 1,
  170. NumMessages: 1,
  171. NumExtensions: 0,
  172. NumServices: 0,
  173. },
  174. GoTypes: file_common_net_network_proto_goTypes,
  175. DependencyIndexes: file_common_net_network_proto_depIdxs,
  176. EnumInfos: file_common_net_network_proto_enumTypes,
  177. MessageInfos: file_common_net_network_proto_msgTypes,
  178. }.Build()
  179. File_common_net_network_proto = out.File
  180. file_common_net_network_proto_rawDesc = nil
  181. file_common_net_network_proto_goTypes = nil
  182. file_common_net_network_proto_depIdxs = nil
  183. }