0
0
mirror of https://github.com/XTLS/REALITY.git synced 2025-08-22 14:38:35 +00:00

Update README.en.md

This commit is contained in:
RPRX 2025-06-08 12:52:15 +00:00 committed by GitHub
parent d4826882fc
commit 57855d234c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,20 +46,17 @@ TODO List: TODO
"", // If there is this item, the client shortId can be empty "", // If there is this item, the client shortId can be empty
"0123456789abcdef" // 0 to f, the length is a multiple of 2, the maximum length is 16 "0123456789abcdef" // 0 to f, the length is a multiple of 2, the maximum length is 16
], ],
// The two limit below are optional for rate limiting falling REALITY connections. Default are 0 means disabled // These two limitations below are optional, for rate limiting fallback connections, bytesPerSec's default is 0, which means disabled
// WARNING: Enabling rate limiting may create detectable patterns for Great-Firewall! // It's a detectable pattern, not recommended to be enabled, RANDOMIZE these parameters if you're a web-panel/one-click-script developer
// If you're a GUI/panel/one-click script developer, RANDOMIZE these parameters!
"limitFallbackUpload": { "limitFallbackUpload": {
// Limit upload for falling REALITY connections
"afterBytes": 0, // Start throttling after (bytes) "afterBytes": 0, // Start throttling after (bytes)
"bytesPerSec": 0, // Base speed (bytes/s) "bytesPerSec": 0, // Base speed (bytes/s)
"burstBytesPerSec": 0 // Burst capacity (bytes) "burstBytesPerSec": 0 // Burst capacity (bytes/s), works only when it is larger than bytesPerSec
}, },
"limitFallbackDownload": { "limitFallbackDownload": {
// Limit download for falling REALITY connections
"afterBytes": 0, // Start throttling after (bytes) "afterBytes": 0, // Start throttling after (bytes)
"bytesPerSec": 0, // Base speed (bytes/s) "bytesPerSec": 0, // Base speed (bytes/s)
"burstBytesPerSec": 0 // Burst capacity (bytes) "burstBytesPerSec": 0 // Burst capacity (bytes/s), works only when it is larger than bytesPerSec
} }
} }
} }
@ -125,4 +122,4 @@ The REALITY client can perfectly distinguish temporary trusted certificates, rea
1. When the temporary trusted certificate is received, the proxy connection is available and everything is business as usual 1. When the temporary trusted certificate is received, the proxy connection is available and everything is business as usual
2. When the real certificate is received, enter the crawler mode (spiderX) 2. When the real certificate is received, enter the crawler mode (spiderX)
3. When an invalid certificate is received, TLS alert will be sent and the connection will be disconnected 3. When an invalid certificate is received, TLS alert will be sent and the connection will be disconnected