* added udp noise

* adding protobuf settings

* freedom json parser and clean up

* resolve confict

* fix and clean up

* use net.conn instead of packetconnwrapper

* avoid constructing SequentialWriter directly

---------

Co-authored-by: mmmray <142015632+mmmray@users.noreply.github.com>
This commit is contained in:
dragonbreath2000 2024-08-28 14:10:11 -07:00 committed by GitHub
parent 8674ed5a0d
commit 002d08bf83
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 295 additions and 37 deletions

View file

@ -20,6 +20,13 @@ message Fragment {
uint64 interval_min = 5;
uint64 interval_max = 6;
}
message Noise {
uint64 length_min = 1;
uint64 length_max = 2;
uint64 delay_min = 3;
uint64 delay_max = 4;
string str_noise = 5;
}
message Config {
enum DomainStrategy {
@ -41,4 +48,5 @@ message Config {
uint32 user_level = 4;
Fragment fragment = 5;
uint32 proxy_protocol = 6;
Noise noise = 7;
}