0
mirror of https://github.com/XTLS/Xray-core.git synced 2025-06-14 20:39:36 +03:00

SplitHTTP client: Add minUploadInterval (#3592)

This commit is contained in:
mmmray
2024-07-27 14:52:36 +02:00
committed by GitHub
parent 7cf5ee8afd
commit 8a4217fdf5
6 changed files with 188 additions and 25 deletions

View File

@ -12,4 +12,10 @@ message Config {
map<string, string> header = 3;
int32 maxConcurrentUploads = 4;
int32 maxUploadSize = 5;
RandRangeConfig minUploadIntervalMs = 6;
}
message RandRangeConfig {
int32 from = 1;
int32 to = 2;
}