config.pb.go 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. package domainsocket
  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. )
  8. const (
  9. // Verify that this generated code is sufficiently up-to-date.
  10. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  11. // Verify that runtime/protoimpl is sufficiently up-to-date.
  12. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  13. )
  14. type Config struct {
  15. state protoimpl.MessageState
  16. sizeCache protoimpl.SizeCache
  17. unknownFields protoimpl.UnknownFields
  18. // Path of the domain socket. This overrides the IP/Port parameter from
  19. // upstream caller.
  20. Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
  21. // Abstract specifies whether to use abstract namespace or not.
  22. // Traditionally Unix domain socket is file system based. Abstract domain
  23. // socket can be used without acquiring file lock.
  24. Abstract bool `protobuf:"varint,2,opt,name=abstract,proto3" json:"abstract,omitempty"`
  25. // Some apps, eg. haproxy, use the full length of sockaddr_un.sun_path to
  26. // connect(2) or bind(2) when using abstract UDS.
  27. Padding bool `protobuf:"varint,3,opt,name=padding,proto3" json:"padding,omitempty"`
  28. }
  29. func (x *Config) Reset() {
  30. *x = Config{}
  31. if protoimpl.UnsafeEnabled {
  32. mi := &file_transport_internet_domainsocket_config_proto_msgTypes[0]
  33. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  34. ms.StoreMessageInfo(mi)
  35. }
  36. }
  37. func (x *Config) String() string {
  38. return protoimpl.X.MessageStringOf(x)
  39. }
  40. func (*Config) ProtoMessage() {}
  41. func (x *Config) ProtoReflect() protoreflect.Message {
  42. mi := &file_transport_internet_domainsocket_config_proto_msgTypes[0]
  43. if protoimpl.UnsafeEnabled && x != nil {
  44. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  45. if ms.LoadMessageInfo() == nil {
  46. ms.StoreMessageInfo(mi)
  47. }
  48. return ms
  49. }
  50. return mi.MessageOf(x)
  51. }
  52. // Deprecated: Use Config.ProtoReflect.Descriptor instead.
  53. func (*Config) Descriptor() ([]byte, []int) {
  54. return file_transport_internet_domainsocket_config_proto_rawDescGZIP(), []int{0}
  55. }
  56. func (x *Config) GetPath() string {
  57. if x != nil {
  58. return x.Path
  59. }
  60. return ""
  61. }
  62. func (x *Config) GetAbstract() bool {
  63. if x != nil {
  64. return x.Abstract
  65. }
  66. return false
  67. }
  68. func (x *Config) GetPadding() bool {
  69. if x != nil {
  70. return x.Padding
  71. }
  72. return false
  73. }
  74. var File_transport_internet_domainsocket_config_proto protoreflect.FileDescriptor
  75. var file_transport_internet_domainsocket_config_proto_rawDesc = []byte{
  76. 0x0a, 0x2c, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x69, 0x6e, 0x74, 0x65,
  77. 0x72, 0x6e, 0x65, 0x74, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x6f, 0x63, 0x6b, 0x65,
  78. 0x74, 0x2f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x2a,
  79. 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72, 0x65, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73,
  80. 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x64, 0x6f,
  81. 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x6f, 0x63, 0x6b, 0x65, 0x74, 0x22, 0x52, 0x0a, 0x06, 0x43, 0x6f,
  82. 0x6e, 0x66, 0x69, 0x67, 0x12, 0x12, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01,
  83. 0x28, 0x09, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x62, 0x73, 0x74,
  84. 0x72, 0x61, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x61, 0x62, 0x73, 0x74,
  85. 0x72, 0x61, 0x63, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x18,
  86. 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x61, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x42, 0x9f,
  87. 0x01, 0x0a, 0x2e, 0x63, 0x6f, 0x6d, 0x2e, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2e, 0x63, 0x6f, 0x72,
  88. 0x65, 0x2e, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x69, 0x6e, 0x74, 0x65,
  89. 0x72, 0x6e, 0x65, 0x74, 0x2e, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x6f, 0x63, 0x6b, 0x65,
  90. 0x74, 0x50, 0x01, 0x5a, 0x3e, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f,
  91. 0x76, 0x32, 0x66, 0x6c, 0x79, 0x2f, 0x76, 0x32, 0x72, 0x61, 0x79, 0x2d, 0x63, 0x6f, 0x72, 0x65,
  92. 0x2f, 0x76, 0x35, 0x2f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x69, 0x6e,
  93. 0x74, 0x65, 0x72, 0x6e, 0x65, 0x74, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x6f, 0x63,
  94. 0x6b, 0x65, 0x74, 0xaa, 0x02, 0x2a, 0x56, 0x32, 0x52, 0x61, 0x79, 0x2e, 0x43, 0x6f, 0x72, 0x65,
  95. 0x2e, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x49, 0x6e, 0x74, 0x65, 0x72,
  96. 0x6e, 0x65, 0x74, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x6f, 0x63, 0x6b, 0x65, 0x74,
  97. 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  98. }
  99. var (
  100. file_transport_internet_domainsocket_config_proto_rawDescOnce sync.Once
  101. file_transport_internet_domainsocket_config_proto_rawDescData = file_transport_internet_domainsocket_config_proto_rawDesc
  102. )
  103. func file_transport_internet_domainsocket_config_proto_rawDescGZIP() []byte {
  104. file_transport_internet_domainsocket_config_proto_rawDescOnce.Do(func() {
  105. file_transport_internet_domainsocket_config_proto_rawDescData = protoimpl.X.CompressGZIP(file_transport_internet_domainsocket_config_proto_rawDescData)
  106. })
  107. return file_transport_internet_domainsocket_config_proto_rawDescData
  108. }
  109. var file_transport_internet_domainsocket_config_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
  110. var file_transport_internet_domainsocket_config_proto_goTypes = []interface{}{
  111. (*Config)(nil), // 0: v2ray.core.transport.internet.domainsocket.Config
  112. }
  113. var file_transport_internet_domainsocket_config_proto_depIdxs = []int32{
  114. 0, // [0:0] is the sub-list for method output_type
  115. 0, // [0:0] is the sub-list for method input_type
  116. 0, // [0:0] is the sub-list for extension type_name
  117. 0, // [0:0] is the sub-list for extension extendee
  118. 0, // [0:0] is the sub-list for field type_name
  119. }
  120. func init() { file_transport_internet_domainsocket_config_proto_init() }
  121. func file_transport_internet_domainsocket_config_proto_init() {
  122. if File_transport_internet_domainsocket_config_proto != nil {
  123. return
  124. }
  125. if !protoimpl.UnsafeEnabled {
  126. file_transport_internet_domainsocket_config_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  127. switch v := v.(*Config); i {
  128. case 0:
  129. return &v.state
  130. case 1:
  131. return &v.sizeCache
  132. case 2:
  133. return &v.unknownFields
  134. default:
  135. return nil
  136. }
  137. }
  138. }
  139. type x struct{}
  140. out := protoimpl.TypeBuilder{
  141. File: protoimpl.DescBuilder{
  142. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  143. RawDescriptor: file_transport_internet_domainsocket_config_proto_rawDesc,
  144. NumEnums: 0,
  145. NumMessages: 1,
  146. NumExtensions: 0,
  147. NumServices: 0,
  148. },
  149. GoTypes: file_transport_internet_domainsocket_config_proto_goTypes,
  150. DependencyIndexes: file_transport_internet_domainsocket_config_proto_depIdxs,
  151. MessageInfos: file_transport_internet_domainsocket_config_proto_msgTypes,
  152. }.Build()
  153. File_transport_internet_domainsocket_config_proto = out.File
  154. file_transport_internet_domainsocket_config_proto_rawDesc = nil
  155. file_transport_internet_domainsocket_config_proto_goTypes = nil
  156. file_transport_internet_domainsocket_config_proto_depIdxs = nil
  157. }