config.pb.go 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.11
  4. // protoc v6.33.5
  5. // source: transport/internet/splithttp/config.proto
  6. package splithttp
  7. import (
  8. internet "github.com/xtls/xray-core/transport/internet"
  9. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  10. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  11. reflect "reflect"
  12. sync "sync"
  13. unsafe "unsafe"
  14. )
  15. const (
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  18. // Verify that runtime/protoimpl is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  20. )
  21. type RangeConfig struct {
  22. state protoimpl.MessageState `protogen:"open.v1"`
  23. From int32 `protobuf:"varint,1,opt,name=from,proto3" json:"from,omitempty"`
  24. To int32 `protobuf:"varint,2,opt,name=to,proto3" json:"to,omitempty"`
  25. unknownFields protoimpl.UnknownFields
  26. sizeCache protoimpl.SizeCache
  27. }
  28. func (x *RangeConfig) Reset() {
  29. *x = RangeConfig{}
  30. mi := &file_transport_internet_splithttp_config_proto_msgTypes[0]
  31. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  32. ms.StoreMessageInfo(mi)
  33. }
  34. func (x *RangeConfig) String() string {
  35. return protoimpl.X.MessageStringOf(x)
  36. }
  37. func (*RangeConfig) ProtoMessage() {}
  38. func (x *RangeConfig) ProtoReflect() protoreflect.Message {
  39. mi := &file_transport_internet_splithttp_config_proto_msgTypes[0]
  40. if x != nil {
  41. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  42. if ms.LoadMessageInfo() == nil {
  43. ms.StoreMessageInfo(mi)
  44. }
  45. return ms
  46. }
  47. return mi.MessageOf(x)
  48. }
  49. // Deprecated: Use RangeConfig.ProtoReflect.Descriptor instead.
  50. func (*RangeConfig) Descriptor() ([]byte, []int) {
  51. return file_transport_internet_splithttp_config_proto_rawDescGZIP(), []int{0}
  52. }
  53. func (x *RangeConfig) GetFrom() int32 {
  54. if x != nil {
  55. return x.From
  56. }
  57. return 0
  58. }
  59. func (x *RangeConfig) GetTo() int32 {
  60. if x != nil {
  61. return x.To
  62. }
  63. return 0
  64. }
  65. type XmuxConfig struct {
  66. state protoimpl.MessageState `protogen:"open.v1"`
  67. MaxConcurrency *RangeConfig `protobuf:"bytes,1,opt,name=maxConcurrency,proto3" json:"maxConcurrency,omitempty"`
  68. MaxConnections *RangeConfig `protobuf:"bytes,2,opt,name=maxConnections,proto3" json:"maxConnections,omitempty"`
  69. CMaxReuseTimes *RangeConfig `protobuf:"bytes,3,opt,name=cMaxReuseTimes,proto3" json:"cMaxReuseTimes,omitempty"`
  70. HMaxRequestTimes *RangeConfig `protobuf:"bytes,4,opt,name=hMaxRequestTimes,proto3" json:"hMaxRequestTimes,omitempty"`
  71. HMaxReusableSecs *RangeConfig `protobuf:"bytes,5,opt,name=hMaxReusableSecs,proto3" json:"hMaxReusableSecs,omitempty"`
  72. HKeepAlivePeriod int64 `protobuf:"varint,6,opt,name=hKeepAlivePeriod,proto3" json:"hKeepAlivePeriod,omitempty"`
  73. unknownFields protoimpl.UnknownFields
  74. sizeCache protoimpl.SizeCache
  75. }
  76. func (x *XmuxConfig) Reset() {
  77. *x = XmuxConfig{}
  78. mi := &file_transport_internet_splithttp_config_proto_msgTypes[1]
  79. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  80. ms.StoreMessageInfo(mi)
  81. }
  82. func (x *XmuxConfig) String() string {
  83. return protoimpl.X.MessageStringOf(x)
  84. }
  85. func (*XmuxConfig) ProtoMessage() {}
  86. func (x *XmuxConfig) ProtoReflect() protoreflect.Message {
  87. mi := &file_transport_internet_splithttp_config_proto_msgTypes[1]
  88. if x != nil {
  89. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  90. if ms.LoadMessageInfo() == nil {
  91. ms.StoreMessageInfo(mi)
  92. }
  93. return ms
  94. }
  95. return mi.MessageOf(x)
  96. }
  97. // Deprecated: Use XmuxConfig.ProtoReflect.Descriptor instead.
  98. func (*XmuxConfig) Descriptor() ([]byte, []int) {
  99. return file_transport_internet_splithttp_config_proto_rawDescGZIP(), []int{1}
  100. }
  101. func (x *XmuxConfig) GetMaxConcurrency() *RangeConfig {
  102. if x != nil {
  103. return x.MaxConcurrency
  104. }
  105. return nil
  106. }
  107. func (x *XmuxConfig) GetMaxConnections() *RangeConfig {
  108. if x != nil {
  109. return x.MaxConnections
  110. }
  111. return nil
  112. }
  113. func (x *XmuxConfig) GetCMaxReuseTimes() *RangeConfig {
  114. if x != nil {
  115. return x.CMaxReuseTimes
  116. }
  117. return nil
  118. }
  119. func (x *XmuxConfig) GetHMaxRequestTimes() *RangeConfig {
  120. if x != nil {
  121. return x.HMaxRequestTimes
  122. }
  123. return nil
  124. }
  125. func (x *XmuxConfig) GetHMaxReusableSecs() *RangeConfig {
  126. if x != nil {
  127. return x.HMaxReusableSecs
  128. }
  129. return nil
  130. }
  131. func (x *XmuxConfig) GetHKeepAlivePeriod() int64 {
  132. if x != nil {
  133. return x.HKeepAlivePeriod
  134. }
  135. return 0
  136. }
  137. type Config struct {
  138. state protoimpl.MessageState `protogen:"open.v1"`
  139. Host string `protobuf:"bytes,1,opt,name=host,proto3" json:"host,omitempty"`
  140. Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"`
  141. Mode string `protobuf:"bytes,3,opt,name=mode,proto3" json:"mode,omitempty"`
  142. Headers map[string]string `protobuf:"bytes,4,rep,name=headers,proto3" json:"headers,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  143. XPaddingBytes *RangeConfig `protobuf:"bytes,5,opt,name=xPaddingBytes,proto3" json:"xPaddingBytes,omitempty"`
  144. NoGRPCHeader bool `protobuf:"varint,6,opt,name=noGRPCHeader,proto3" json:"noGRPCHeader,omitempty"`
  145. NoSSEHeader bool `protobuf:"varint,7,opt,name=noSSEHeader,proto3" json:"noSSEHeader,omitempty"`
  146. ScMaxEachPostBytes *RangeConfig `protobuf:"bytes,8,opt,name=scMaxEachPostBytes,proto3" json:"scMaxEachPostBytes,omitempty"`
  147. ScMinPostsIntervalMs *RangeConfig `protobuf:"bytes,9,opt,name=scMinPostsIntervalMs,proto3" json:"scMinPostsIntervalMs,omitempty"`
  148. ScMaxBufferedPosts int64 `protobuf:"varint,10,opt,name=scMaxBufferedPosts,proto3" json:"scMaxBufferedPosts,omitempty"`
  149. ScStreamUpServerSecs *RangeConfig `protobuf:"bytes,11,opt,name=scStreamUpServerSecs,proto3" json:"scStreamUpServerSecs,omitempty"`
  150. Xmux *XmuxConfig `protobuf:"bytes,12,opt,name=xmux,proto3" json:"xmux,omitempty"`
  151. DownloadSettings *internet.StreamConfig `protobuf:"bytes,13,opt,name=downloadSettings,proto3" json:"downloadSettings,omitempty"`
  152. XPaddingObfsMode bool `protobuf:"varint,14,opt,name=xPaddingObfsMode,proto3" json:"xPaddingObfsMode,omitempty"`
  153. XPaddingKey string `protobuf:"bytes,15,opt,name=xPaddingKey,proto3" json:"xPaddingKey,omitempty"`
  154. XPaddingHeader string `protobuf:"bytes,16,opt,name=xPaddingHeader,proto3" json:"xPaddingHeader,omitempty"`
  155. XPaddingPlacement string `protobuf:"bytes,17,opt,name=xPaddingPlacement,proto3" json:"xPaddingPlacement,omitempty"`
  156. XPaddingMethod string `protobuf:"bytes,18,opt,name=xPaddingMethod,proto3" json:"xPaddingMethod,omitempty"`
  157. UplinkHTTPMethod string `protobuf:"bytes,19,opt,name=uplinkHTTPMethod,proto3" json:"uplinkHTTPMethod,omitempty"`
  158. SessionPlacement string `protobuf:"bytes,20,opt,name=sessionPlacement,proto3" json:"sessionPlacement,omitempty"`
  159. SessionKey string `protobuf:"bytes,21,opt,name=sessionKey,proto3" json:"sessionKey,omitempty"`
  160. SeqPlacement string `protobuf:"bytes,22,opt,name=seqPlacement,proto3" json:"seqPlacement,omitempty"`
  161. SeqKey string `protobuf:"bytes,23,opt,name=seqKey,proto3" json:"seqKey,omitempty"`
  162. UplinkDataPlacement string `protobuf:"bytes,24,opt,name=uplinkDataPlacement,proto3" json:"uplinkDataPlacement,omitempty"`
  163. UplinkDataKey string `protobuf:"bytes,25,opt,name=uplinkDataKey,proto3" json:"uplinkDataKey,omitempty"`
  164. UplinkChunkSize uint32 `protobuf:"varint,26,opt,name=uplinkChunkSize,proto3" json:"uplinkChunkSize,omitempty"`
  165. unknownFields protoimpl.UnknownFields
  166. sizeCache protoimpl.SizeCache
  167. }
  168. func (x *Config) Reset() {
  169. *x = Config{}
  170. mi := &file_transport_internet_splithttp_config_proto_msgTypes[2]
  171. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  172. ms.StoreMessageInfo(mi)
  173. }
  174. func (x *Config) String() string {
  175. return protoimpl.X.MessageStringOf(x)
  176. }
  177. func (*Config) ProtoMessage() {}
  178. func (x *Config) ProtoReflect() protoreflect.Message {
  179. mi := &file_transport_internet_splithttp_config_proto_msgTypes[2]
  180. if x != nil {
  181. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  182. if ms.LoadMessageInfo() == nil {
  183. ms.StoreMessageInfo(mi)
  184. }
  185. return ms
  186. }
  187. return mi.MessageOf(x)
  188. }
  189. // Deprecated: Use Config.ProtoReflect.Descriptor instead.
  190. func (*Config) Descriptor() ([]byte, []int) {
  191. return file_transport_internet_splithttp_config_proto_rawDescGZIP(), []int{2}
  192. }
  193. func (x *Config) GetHost() string {
  194. if x != nil {
  195. return x.Host
  196. }
  197. return ""
  198. }
  199. func (x *Config) GetPath() string {
  200. if x != nil {
  201. return x.Path
  202. }
  203. return ""
  204. }
  205. func (x *Config) GetMode() string {
  206. if x != nil {
  207. return x.Mode
  208. }
  209. return ""
  210. }
  211. func (x *Config) GetHeaders() map[string]string {
  212. if x != nil {
  213. return x.Headers
  214. }
  215. return nil
  216. }
  217. func (x *Config) GetXPaddingBytes() *RangeConfig {
  218. if x != nil {
  219. return x.XPaddingBytes
  220. }
  221. return nil
  222. }
  223. func (x *Config) GetNoGRPCHeader() bool {
  224. if x != nil {
  225. return x.NoGRPCHeader
  226. }
  227. return false
  228. }
  229. func (x *Config) GetNoSSEHeader() bool {
  230. if x != nil {
  231. return x.NoSSEHeader
  232. }
  233. return false
  234. }
  235. func (x *Config) GetScMaxEachPostBytes() *RangeConfig {
  236. if x != nil {
  237. return x.ScMaxEachPostBytes
  238. }
  239. return nil
  240. }
  241. func (x *Config) GetScMinPostsIntervalMs() *RangeConfig {
  242. if x != nil {
  243. return x.ScMinPostsIntervalMs
  244. }
  245. return nil
  246. }
  247. func (x *Config) GetScMaxBufferedPosts() int64 {
  248. if x != nil {
  249. return x.ScMaxBufferedPosts
  250. }
  251. return 0
  252. }
  253. func (x *Config) GetScStreamUpServerSecs() *RangeConfig {
  254. if x != nil {
  255. return x.ScStreamUpServerSecs
  256. }
  257. return nil
  258. }
  259. func (x *Config) GetXmux() *XmuxConfig {
  260. if x != nil {
  261. return x.Xmux
  262. }
  263. return nil
  264. }
  265. func (x *Config) GetDownloadSettings() *internet.StreamConfig {
  266. if x != nil {
  267. return x.DownloadSettings
  268. }
  269. return nil
  270. }
  271. func (x *Config) GetXPaddingObfsMode() bool {
  272. if x != nil {
  273. return x.XPaddingObfsMode
  274. }
  275. return false
  276. }
  277. func (x *Config) GetXPaddingKey() string {
  278. if x != nil {
  279. return x.XPaddingKey
  280. }
  281. return ""
  282. }
  283. func (x *Config) GetXPaddingHeader() string {
  284. if x != nil {
  285. return x.XPaddingHeader
  286. }
  287. return ""
  288. }
  289. func (x *Config) GetXPaddingPlacement() string {
  290. if x != nil {
  291. return x.XPaddingPlacement
  292. }
  293. return ""
  294. }
  295. func (x *Config) GetXPaddingMethod() string {
  296. if x != nil {
  297. return x.XPaddingMethod
  298. }
  299. return ""
  300. }
  301. func (x *Config) GetUplinkHTTPMethod() string {
  302. if x != nil {
  303. return x.UplinkHTTPMethod
  304. }
  305. return ""
  306. }
  307. func (x *Config) GetSessionPlacement() string {
  308. if x != nil {
  309. return x.SessionPlacement
  310. }
  311. return ""
  312. }
  313. func (x *Config) GetSessionKey() string {
  314. if x != nil {
  315. return x.SessionKey
  316. }
  317. return ""
  318. }
  319. func (x *Config) GetSeqPlacement() string {
  320. if x != nil {
  321. return x.SeqPlacement
  322. }
  323. return ""
  324. }
  325. func (x *Config) GetSeqKey() string {
  326. if x != nil {
  327. return x.SeqKey
  328. }
  329. return ""
  330. }
  331. func (x *Config) GetUplinkDataPlacement() string {
  332. if x != nil {
  333. return x.UplinkDataPlacement
  334. }
  335. return ""
  336. }
  337. func (x *Config) GetUplinkDataKey() string {
  338. if x != nil {
  339. return x.UplinkDataKey
  340. }
  341. return ""
  342. }
  343. func (x *Config) GetUplinkChunkSize() uint32 {
  344. if x != nil {
  345. return x.UplinkChunkSize
  346. }
  347. return 0
  348. }
  349. var File_transport_internet_splithttp_config_proto protoreflect.FileDescriptor
  350. const file_transport_internet_splithttp_config_proto_rawDesc = "" +
  351. "\n" +
  352. ")transport/internet/splithttp/config.proto\x12!xray.transport.internet.splithttp\x1a\x1ftransport/internet/config.proto\"1\n" +
  353. "\vRangeConfig\x12\x12\n" +
  354. "\x04from\x18\x01 \x01(\x05R\x04from\x12\x0e\n" +
  355. "\x02to\x18\x02 \x01(\x05R\x02to\"\xf8\x03\n" +
  356. "\n" +
  357. "XmuxConfig\x12V\n" +
  358. "\x0emaxConcurrency\x18\x01 \x01(\v2..xray.transport.internet.splithttp.RangeConfigR\x0emaxConcurrency\x12V\n" +
  359. "\x0emaxConnections\x18\x02 \x01(\v2..xray.transport.internet.splithttp.RangeConfigR\x0emaxConnections\x12V\n" +
  360. "\x0ecMaxReuseTimes\x18\x03 \x01(\v2..xray.transport.internet.splithttp.RangeConfigR\x0ecMaxReuseTimes\x12Z\n" +
  361. "\x10hMaxRequestTimes\x18\x04 \x01(\v2..xray.transport.internet.splithttp.RangeConfigR\x10hMaxRequestTimes\x12Z\n" +
  362. "\x10hMaxReusableSecs\x18\x05 \x01(\v2..xray.transport.internet.splithttp.RangeConfigR\x10hMaxReusableSecs\x12*\n" +
  363. "\x10hKeepAlivePeriod\x18\x06 \x01(\x03R\x10hKeepAlivePeriod\"\xde\n" +
  364. "\n" +
  365. "\x06Config\x12\x12\n" +
  366. "\x04host\x18\x01 \x01(\tR\x04host\x12\x12\n" +
  367. "\x04path\x18\x02 \x01(\tR\x04path\x12\x12\n" +
  368. "\x04mode\x18\x03 \x01(\tR\x04mode\x12P\n" +
  369. "\aheaders\x18\x04 \x03(\v26.xray.transport.internet.splithttp.Config.HeadersEntryR\aheaders\x12T\n" +
  370. "\rxPaddingBytes\x18\x05 \x01(\v2..xray.transport.internet.splithttp.RangeConfigR\rxPaddingBytes\x12\"\n" +
  371. "\fnoGRPCHeader\x18\x06 \x01(\bR\fnoGRPCHeader\x12 \n" +
  372. "\vnoSSEHeader\x18\a \x01(\bR\vnoSSEHeader\x12^\n" +
  373. "\x12scMaxEachPostBytes\x18\b \x01(\v2..xray.transport.internet.splithttp.RangeConfigR\x12scMaxEachPostBytes\x12b\n" +
  374. "\x14scMinPostsIntervalMs\x18\t \x01(\v2..xray.transport.internet.splithttp.RangeConfigR\x14scMinPostsIntervalMs\x12.\n" +
  375. "\x12scMaxBufferedPosts\x18\n" +
  376. " \x01(\x03R\x12scMaxBufferedPosts\x12b\n" +
  377. "\x14scStreamUpServerSecs\x18\v \x01(\v2..xray.transport.internet.splithttp.RangeConfigR\x14scStreamUpServerSecs\x12A\n" +
  378. "\x04xmux\x18\f \x01(\v2-.xray.transport.internet.splithttp.XmuxConfigR\x04xmux\x12Q\n" +
  379. "\x10downloadSettings\x18\r \x01(\v2%.xray.transport.internet.StreamConfigR\x10downloadSettings\x12*\n" +
  380. "\x10xPaddingObfsMode\x18\x0e \x01(\bR\x10xPaddingObfsMode\x12 \n" +
  381. "\vxPaddingKey\x18\x0f \x01(\tR\vxPaddingKey\x12&\n" +
  382. "\x0exPaddingHeader\x18\x10 \x01(\tR\x0exPaddingHeader\x12,\n" +
  383. "\x11xPaddingPlacement\x18\x11 \x01(\tR\x11xPaddingPlacement\x12&\n" +
  384. "\x0exPaddingMethod\x18\x12 \x01(\tR\x0exPaddingMethod\x12*\n" +
  385. "\x10uplinkHTTPMethod\x18\x13 \x01(\tR\x10uplinkHTTPMethod\x12*\n" +
  386. "\x10sessionPlacement\x18\x14 \x01(\tR\x10sessionPlacement\x12\x1e\n" +
  387. "\n" +
  388. "sessionKey\x18\x15 \x01(\tR\n" +
  389. "sessionKey\x12\"\n" +
  390. "\fseqPlacement\x18\x16 \x01(\tR\fseqPlacement\x12\x16\n" +
  391. "\x06seqKey\x18\x17 \x01(\tR\x06seqKey\x120\n" +
  392. "\x13uplinkDataPlacement\x18\x18 \x01(\tR\x13uplinkDataPlacement\x12$\n" +
  393. "\ruplinkDataKey\x18\x19 \x01(\tR\ruplinkDataKey\x12(\n" +
  394. "\x0fuplinkChunkSize\x18\x1a \x01(\rR\x0fuplinkChunkSize\x1a:\n" +
  395. "\fHeadersEntry\x12\x10\n" +
  396. "\x03key\x18\x01 \x01(\tR\x03key\x12\x14\n" +
  397. "\x05value\x18\x02 \x01(\tR\x05value:\x028\x01B\x85\x01\n" +
  398. "%com.xray.transport.internet.splithttpP\x01Z6github.com/xtls/xray-core/transport/internet/splithttp\xaa\x02!Xray.Transport.Internet.SplitHttpb\x06proto3"
  399. var (
  400. file_transport_internet_splithttp_config_proto_rawDescOnce sync.Once
  401. file_transport_internet_splithttp_config_proto_rawDescData []byte
  402. )
  403. func file_transport_internet_splithttp_config_proto_rawDescGZIP() []byte {
  404. file_transport_internet_splithttp_config_proto_rawDescOnce.Do(func() {
  405. file_transport_internet_splithttp_config_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_transport_internet_splithttp_config_proto_rawDesc), len(file_transport_internet_splithttp_config_proto_rawDesc)))
  406. })
  407. return file_transport_internet_splithttp_config_proto_rawDescData
  408. }
  409. var file_transport_internet_splithttp_config_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
  410. var file_transport_internet_splithttp_config_proto_goTypes = []any{
  411. (*RangeConfig)(nil), // 0: xray.transport.internet.splithttp.RangeConfig
  412. (*XmuxConfig)(nil), // 1: xray.transport.internet.splithttp.XmuxConfig
  413. (*Config)(nil), // 2: xray.transport.internet.splithttp.Config
  414. nil, // 3: xray.transport.internet.splithttp.Config.HeadersEntry
  415. (*internet.StreamConfig)(nil), // 4: xray.transport.internet.StreamConfig
  416. }
  417. var file_transport_internet_splithttp_config_proto_depIdxs = []int32{
  418. 0, // 0: xray.transport.internet.splithttp.XmuxConfig.maxConcurrency:type_name -> xray.transport.internet.splithttp.RangeConfig
  419. 0, // 1: xray.transport.internet.splithttp.XmuxConfig.maxConnections:type_name -> xray.transport.internet.splithttp.RangeConfig
  420. 0, // 2: xray.transport.internet.splithttp.XmuxConfig.cMaxReuseTimes:type_name -> xray.transport.internet.splithttp.RangeConfig
  421. 0, // 3: xray.transport.internet.splithttp.XmuxConfig.hMaxRequestTimes:type_name -> xray.transport.internet.splithttp.RangeConfig
  422. 0, // 4: xray.transport.internet.splithttp.XmuxConfig.hMaxReusableSecs:type_name -> xray.transport.internet.splithttp.RangeConfig
  423. 3, // 5: xray.transport.internet.splithttp.Config.headers:type_name -> xray.transport.internet.splithttp.Config.HeadersEntry
  424. 0, // 6: xray.transport.internet.splithttp.Config.xPaddingBytes:type_name -> xray.transport.internet.splithttp.RangeConfig
  425. 0, // 7: xray.transport.internet.splithttp.Config.scMaxEachPostBytes:type_name -> xray.transport.internet.splithttp.RangeConfig
  426. 0, // 8: xray.transport.internet.splithttp.Config.scMinPostsIntervalMs:type_name -> xray.transport.internet.splithttp.RangeConfig
  427. 0, // 9: xray.transport.internet.splithttp.Config.scStreamUpServerSecs:type_name -> xray.transport.internet.splithttp.RangeConfig
  428. 1, // 10: xray.transport.internet.splithttp.Config.xmux:type_name -> xray.transport.internet.splithttp.XmuxConfig
  429. 4, // 11: xray.transport.internet.splithttp.Config.downloadSettings:type_name -> xray.transport.internet.StreamConfig
  430. 12, // [12:12] is the sub-list for method output_type
  431. 12, // [12:12] is the sub-list for method input_type
  432. 12, // [12:12] is the sub-list for extension type_name
  433. 12, // [12:12] is the sub-list for extension extendee
  434. 0, // [0:12] is the sub-list for field type_name
  435. }
  436. func init() { file_transport_internet_splithttp_config_proto_init() }
  437. func file_transport_internet_splithttp_config_proto_init() {
  438. if File_transport_internet_splithttp_config_proto != nil {
  439. return
  440. }
  441. type x struct{}
  442. out := protoimpl.TypeBuilder{
  443. File: protoimpl.DescBuilder{
  444. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  445. RawDescriptor: unsafe.Slice(unsafe.StringData(file_transport_internet_splithttp_config_proto_rawDesc), len(file_transport_internet_splithttp_config_proto_rawDesc)),
  446. NumEnums: 0,
  447. NumMessages: 4,
  448. NumExtensions: 0,
  449. NumServices: 0,
  450. },
  451. GoTypes: file_transport_internet_splithttp_config_proto_goTypes,
  452. DependencyIndexes: file_transport_internet_splithttp_config_proto_depIdxs,
  453. MessageInfos: file_transport_internet_splithttp_config_proto_msgTypes,
  454. }.Build()
  455. File_transport_internet_splithttp_config_proto = out.File
  456. file_transport_internet_splithttp_config_proto_goTypes = nil
  457. file_transport_internet_splithttp_config_proto_depIdxs = nil
  458. }