mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
24 lines
652 B
Protocol Buffer
24 lines
652 B
Protocol Buffer
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;
|
|
|
|
message Config {
|
|
string host = 1;
|
|
string path = 2;
|
|
map<string, string> header = 3;
|
|
RandRangeConfig scMaxConcurrentPosts = 4;
|
|
RandRangeConfig scMaxEachPostBytes = 5;
|
|
RandRangeConfig scMinPostsIntervalMs = 6;
|
|
bool noSSEHeader = 7;
|
|
RandRangeConfig xPaddingBytes = 8;
|
|
}
|
|
|
|
message RandRangeConfig {
|
|
int32 from = 1;
|
|
int32 to = 2;
|
|
}
|