2024-06-18 08:36:36 +03: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 10:31:19 +03:00
|
|
|
import "transport/internet/config.proto";
|
|
|
|
|
2024-06-18 08:36:36 +03:00
|
|
|
message Config {
|
|
|
|
string host = 1;
|
|
|
|
string path = 2;
|
|
|
|
map<string, string> header = 3;
|
2024-07-29 13:10:29 +03:00
|
|
|
RandRangeConfig scMaxConcurrentPosts = 4;
|
|
|
|
RandRangeConfig scMaxEachPostBytes = 5;
|
|
|
|
RandRangeConfig scMinPostsIntervalMs = 6;
|
2024-07-29 09:32:04 +03:00
|
|
|
bool noSSEHeader = 7;
|
2024-08-11 00:47:42 +03:00
|
|
|
RandRangeConfig xPaddingBytes = 8;
|
2024-09-16 15:42:01 +03:00
|
|
|
Multiplexing xmux = 9;
|
2024-10-31 10:31:19 +03:00
|
|
|
xray.transport.internet.StreamConfig downloadSettings = 10;
|
2024-11-09 14:05:41 +03:00
|
|
|
string mode = 11;
|
2024-11-21 08:45:49 +03:00
|
|
|
bool noGRPCHeader = 12;
|
2024-07-27 15:52:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
message RandRangeConfig {
|
|
|
|
int32 from = 1;
|
|
|
|
int32 to = 2;
|
2024-06-18 08:36:36 +03:00
|
|
|
}
|
2024-09-16 15:42:01 +03:00
|
|
|
|
|
|
|
message Multiplexing {
|
2024-09-19 03:45:39 +03:00
|
|
|
RandRangeConfig maxConcurrency = 1;
|
|
|
|
RandRangeConfig maxConnections = 2;
|
2024-09-16 15:42:01 +03:00
|
|
|
RandRangeConfig cMaxReuseTimes = 3;
|
|
|
|
RandRangeConfig cMaxLifetimeMs = 4;
|
|
|
|
}
|