add noise options for freedom (#565)

pull/566/head
dragonbreath2000 3 months ago committed by GitHub
parent 242364d62a
commit b3e68feeb9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -14,6 +14,10 @@ Freedom is an outbound protocol that can be used to send (normal) TCP or UDP dat
"length": "100-200", "length": "100-200",
"interval": "10-20" // ms "interval": "10-20" // ms
}, },
"noise": {
"packet": "rand:5-10",
"delay": "10-20" // ms
},
"proxyProtocol": 0 "proxyProtocol": 0
} }
``` ```
@ -57,6 +61,14 @@ A key-value map used to control TCP fragmentationunder some circumstances it
`"interval"`: time between fragmentsms `"interval"`: time between fragmentsms
> `noise`: map
A key-value map used to control UDP noiseunder some circumstances it can bypass some udp based protocol restrictions.
`"packet"`support two different methods."rand:min-max" generates random bytes with min and max length provided for noise."str:Customstring" will use user input string as noise.
`"delay"`delay before sending real data (ms).If not specified, the default value is 0.
> `proxyProtocol`: number > `proxyProtocol`: number
The value of `proxyProtocol` represents the PROXY Protocol version. default value is `0`. The value of `proxyProtocol` represents the PROXY Protocol version. default value is `0`.

Loading…
Cancel
Save