network.pb.go 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. package net
  2. import (
  3. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  4. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  5. reflect "reflect"
  6. sync "sync"
  7. unsafe "unsafe"
  8. )
  9. const (
  10. // Verify that this generated code is sufficiently up-to-date.
  11. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  12. // Verify that runtime/protoimpl is sufficiently up-to-date.
  13. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  14. )
  15. type Network int32
  16. const (
  17. Network_Unknown Network = 0
  18. // Deprecated: Marked as deprecated in common/net/network.proto.
  19. Network_RawTCP Network = 1
  20. Network_TCP Network = 2
  21. Network_UDP Network = 3
  22. Network_UNIX Network = 4
  23. )
  24. // Enum value maps for Network.
  25. var (
  26. Network_name = map[int32]string{
  27. 0: "Unknown",
  28. 1: "RawTCP",
  29. 2: "TCP",
  30. 3: "UDP",
  31. 4: "UNIX",
  32. }
  33. Network_value = map[string]int32{
  34. "Unknown": 0,
  35. "RawTCP": 1,
  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 `protogen:"open.v1"`
  65. Network []Network `protobuf:"varint,1,rep,packed,name=network,proto3,enum=v2ray.core.common.net.Network" json:"network,omitempty"`
  66. unknownFields protoimpl.UnknownFields
  67. sizeCache protoimpl.SizeCache
  68. }
  69. func (x *NetworkList) Reset() {
  70. *x = NetworkList{}
  71. mi := &file_common_net_network_proto_msgTypes[0]
  72. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  73. ms.StoreMessageInfo(mi)
  74. }
  75. func (x *NetworkList) String() string {
  76. return protoimpl.X.MessageStringOf(x)
  77. }
  78. func (*NetworkList) ProtoMessage() {}
  79. func (x *NetworkList) ProtoReflect() protoreflect.Message {
  80. mi := &file_common_net_network_proto_msgTypes[0]
  81. if x != nil {
  82. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  83. if ms.LoadMessageInfo() == nil {
  84. ms.StoreMessageInfo(mi)
  85. }
  86. return ms
  87. }
  88. return mi.MessageOf(x)
  89. }
  90. // Deprecated: Use NetworkList.ProtoReflect.Descriptor instead.
  91. func (*NetworkList) Descriptor() ([]byte, []int) {
  92. return file_common_net_network_proto_rawDescGZIP(), []int{0}
  93. }
  94. func (x *NetworkList) GetNetwork() []Network {
  95. if x != nil {
  96. return x.Network
  97. }
  98. return nil
  99. }
  100. var File_common_net_network_proto protoreflect.FileDescriptor
  101. var file_common_net_network_proto_rawDesc = string([]byte{
  102. 0x0a, 0x18, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6e, 0x65, 0x74, 0x2f, 0x6e, 0x65, 0x74,
  103. 0x77, 0x6f, 0x72, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x15, 0x76, 0x32, 0x72, 0x61,
  104. 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65,
  105. 0x74, 0x22, 0x47, 0x0a, 0x0b, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x4c, 0x69, 0x73, 0x74,
  106. 0x12, 0x38, 0x0a, 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x18, 0x01, 0x20, 0x03, 0x28,
  107. 0x0e, 0x32, 0x1e, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x63,
  108. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x2e, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72,
  109. 0x6b, 0x52, 0x07, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2a, 0x42, 0x0a, 0x07, 0x4e, 0x65,
  110. 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e,
  111. 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x06, 0x52, 0x61, 0x77, 0x54, 0x43, 0x50, 0x10, 0x01, 0x1a, 0x02,
  112. 0x08, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x54, 0x43, 0x50, 0x10, 0x02, 0x12, 0x07, 0x0a, 0x03, 0x55,
  113. 0x44, 0x50, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x55, 0x4e, 0x49, 0x58, 0x10, 0x04, 0x42, 0x60,
  114. 0x0a, 0x19, 0x63, 0x6f, 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65,
  115. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x6e, 0x65, 0x74, 0x50, 0x01, 0x5a, 0x29, 0x67,
  116. 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x76, 0x32, 0x66, 0x6c, 0x79, 0x2f,
  117. 0x76, 0x32, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65, 0x2f, 0x76, 0x35, 0x2f, 0x63, 0x6f,
  118. 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6e, 0x65, 0x74, 0xaa, 0x02, 0x15, 0x56, 0x32, 0x52, 0x61, 0x79,
  119. 0x2e, 0x43, 0x6f, 0x72, 0x65, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4e, 0x65, 0x74,
  120. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  121. })
  122. var (
  123. file_common_net_network_proto_rawDescOnce sync.Once
  124. file_common_net_network_proto_rawDescData []byte
  125. )
  126. func file_common_net_network_proto_rawDescGZIP() []byte {
  127. file_common_net_network_proto_rawDescOnce.Do(func() {
  128. file_common_net_network_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_common_net_network_proto_rawDesc), len(file_common_net_network_proto_rawDesc)))
  129. })
  130. return file_common_net_network_proto_rawDescData
  131. }
  132. var file_common_net_network_proto_enumTypes = make([]protoimpl.EnumInfo, 1)
  133. var file_common_net_network_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
  134. var file_common_net_network_proto_goTypes = []any{
  135. (Network)(0), // 0: v2ray.core.common.net.Network
  136. (*NetworkList)(nil), // 1: v2ray.core.common.net.NetworkList
  137. }
  138. var file_common_net_network_proto_depIdxs = []int32{
  139. 0, // 0: v2ray.core.common.net.NetworkList.network:type_name -> v2ray.core.common.net.Network
  140. 1, // [1:1] is the sub-list for method output_type
  141. 1, // [1:1] is the sub-list for method input_type
  142. 1, // [1:1] is the sub-list for extension type_name
  143. 1, // [1:1] is the sub-list for extension extendee
  144. 0, // [0:1] is the sub-list for field type_name
  145. }
  146. func init() { file_common_net_network_proto_init() }
  147. func file_common_net_network_proto_init() {
  148. if File_common_net_network_proto != nil {
  149. return
  150. }
  151. type x struct{}
  152. out := protoimpl.TypeBuilder{
  153. File: protoimpl.DescBuilder{
  154. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  155. RawDescriptor: unsafe.Slice(unsafe.StringData(file_common_net_network_proto_rawDesc), len(file_common_net_network_proto_rawDesc)),
  156. NumEnums: 1,
  157. NumMessages: 1,
  158. NumExtensions: 0,
  159. NumServices: 0,
  160. },
  161. GoTypes: file_common_net_network_proto_goTypes,
  162. DependencyIndexes: file_common_net_network_proto_depIdxs,
  163. EnumInfos: file_common_net_network_proto_enumTypes,
  164. MessageInfos: file_common_net_network_proto_msgTypes,
  165. }.Build()
  166. File_common_net_network_proto = out.File
  167. file_common_net_network_proto_goTypes = nil
  168. file_common_net_network_proto_depIdxs = nil
  169. }