2024-06-18 05:36:36 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package xray.transport.internet.splithttp;
|
|
|
|
option csharp_namespace = "Xray.Transport.Internet.SplitHttp";
|
|
|
|
option go_package = "github.com/xtls/xray-core/transport/internet/splithttp";
|
|
|
|
option java_package = "com.xray.transport.internet.splithttp";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
|
2024-10-31 07:31:19 +00:00
|
|
|
import "transport/internet/config.proto";
|
|
|
|
|
2024-12-15 05:43:10 +00:00
|
|
|
message RangeConfig {
|
|
|
|
int32 from = 1;
|
|
|
|
int32 to = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message XmuxConfig {
|
|
|
|
RangeConfig maxConcurrency = 1;
|
|
|
|
RangeConfig maxConnections = 2;
|
|
|
|
RangeConfig cMaxReuseTimes = 3;
|
|
|
|
RangeConfig cMaxLifetimeMs = 4;
|
|
|
|
RangeConfig hMaxRequestTimes = 5;
|
|
|
|
int64 hKeepAlivePeriod = 6;
|
|
|
|
}
|
|
|
|
|
2024-06-18 05:36:36 +00:00
|
|
|
message Config {
|
|
|
|
string host = 1;
|
|
|
|
string path = 2;
|
2024-12-11 14:05:39 +00:00
|
|
|
string mode = 3;
|
|
|
|
map<string, string> headers = 4;
|
2024-12-15 05:43:10 +00:00
|
|
|
RangeConfig xPaddingBytes = 5;
|
2024-12-11 14:05:39 +00:00
|
|
|
bool noGRPCHeader = 6;
|
2024-07-29 06:32:04 +00:00
|
|
|
bool noSSEHeader = 7;
|
2024-12-15 05:43:10 +00:00
|
|
|
RangeConfig scMaxEachPostBytes = 8;
|
|
|
|
RangeConfig scMinPostsIntervalMs = 9;
|
2024-12-11 14:05:39 +00:00
|
|
|
int64 scMaxBufferedPosts = 10;
|
2024-12-15 05:43:10 +00:00
|
|
|
XmuxConfig xmux = 11;
|
|
|
|
xray.transport.internet.StreamConfig downloadSettings = 12;
|
2024-09-16 12:42:01 +00:00
|
|
|
}
|