mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-05-17 17:48:40 +00:00
Add seed padding logic
- Seed is decoupled with XTLS Vision, which means Seed can turn on without flow - XTLS Vision now use Seed config to configure its padding only mode
This commit is contained in:
parent
68881b531e
commit
5abdc38437
8 changed files with 632 additions and 51 deletions
42
proxy/addons.proto
Normal file
42
proxy/addons.proto
Normal file
|
@ -0,0 +1,42 @@
|
|||
syntax = "proto3";
|
||||
|
||||
package xray.proxy;
|
||||
option csharp_namespace = "Xray.Proxy";
|
||||
option go_package = "github.com/xtls/xray-core/proxy";
|
||||
option java_package = "com.xray.proxy";
|
||||
option java_multiple_files = true;
|
||||
|
||||
message Addons {
|
||||
string Flow = 1;
|
||||
bytes Seed = 2;
|
||||
SeedMode Mode = 3;
|
||||
string Duration = 4; // "0-8" means apply to number of packets, "1000b-" means start applying once both side exchange 1kb data, counting two-ways
|
||||
PaddingConfig Padding = 5;
|
||||
DelayConfig Delay = 6;
|
||||
SchedulerConfig Scheduler = 7;
|
||||
}
|
||||
|
||||
enum SeedMode {
|
||||
Unknown = 0;
|
||||
PaddingOnly = 1;
|
||||
PaddingPlusDelay = 2;
|
||||
IndependentScheduler = 3;
|
||||
}
|
||||
|
||||
message PaddingConfig {
|
||||
uint32 RegularMin = 1;
|
||||
uint32 RegularMax = 2;
|
||||
uint32 LongMin = 3;
|
||||
uint32 LongMax = 4;
|
||||
}
|
||||
|
||||
message DelayConfig {
|
||||
bool IsRandom = 1;
|
||||
uint32 MinMillis = 2;
|
||||
uint32 MaxMillis = 3;
|
||||
}
|
||||
|
||||
message SchedulerConfig {
|
||||
uint32 TimeoutMillis = 1; // original traffic will not be sent right away but when scheduler want to send or pending buffer times out
|
||||
// Other TBD
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue