Skip to content

Commit d77e756

Browse files
committed
ratelimit: Update markdown
1 parent 019a3bb commit d77e756

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

README.en.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,15 @@ TODO List: TODO
4646
"", // If there is this item, the client shortId can be empty
4747
"0123456789abcdef" // 0 to f, the length is a multiple of 2, the maximum length is 16
4848
],
49-
// The following six limits are optional and limit the rate of falling REALITY connections in bytes/second. Default is 0, i.e. not enabled
50-
"limitUploadRate": 0, // Uplink base rate
51-
"limitUploadBrust": 0, // Uplink burst rate
52-
"limitUploadAfter": 0, // Uplink after transport
53-
"limitDownloadRate": 0, // Downlink base rate
54-
"limitDownloadBrust": 0, // Downlink burst rate
55-
"limitDownloadAfter": 0 // Downlink after transport
49+
// The six limit below are optional for rate limiting falling REALITY connections. Default are 0 means disabled
50+
// WARNING: Enabling rate limiting may create detectable patterns for GFW!
51+
// If you're a GUI/panel/one-click script developer, RANDOMIZE these parameters!
52+
"limitUploadRate": 0, // Base upload speed (bytes/s)
53+
"limitUploadBrust": 0, // Upload burst capacity (bytes)
54+
"limitUploadAfter": 0, // Start upload throttling after (bytes)
55+
"limitDownloadRate": 0, // Base download speed (bytes/s)
56+
"limitDownloadBrust": 0, // Download burst capacity (bytes)
57+
"limitDownloadAfter": 0 // Start download throttling after (bytes)
5658
}
5759
}
5860
}

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,13 @@ TODO List: TODO
4646
"", // 若有此项,客户端 shortId 可为空
4747
"0123456789abcdef" // 0 到 f,长度为 2 的倍数,长度上限为 16
4848
],
49-
// 下列六个 limit 为选填,可对回落的 REALITY 连接限速,单位是字节/秒。默认为 0 即不启用
50-
"limitUploadRate": 0, // 上行基准速率
51-
"limitUploadBrust": 0, // 上行突发速率
49+
// 下列六个 limit 为选填,可对回落的 REALITY 连接限速。默认为 0 即不启用
50+
// 警告:启用限速可能会引入新的特征被GFW探测到!如果您是GUI/面板/一键脚本开发者,请务必让这些参数随机化!
51+
"limitUploadRate": 0, // 上行基准速率 (字节/秒)
52+
"limitUploadBrust": 0, // 上行突发速率 (字节/秒)
5253
"limitUploadAfter": 0, // 上行指定字节后开始限速
53-
"limitDownloadRate": 0, // 下行基准速率
54-
"limitDownloadBrust": 0, // 下行突发速率
54+
"limitDownloadRate": 0, // 下行基准速率 (字节/秒)
55+
"limitDownloadBrust": 0, // 下行突发速率 (字节/秒)
5556
"limitDownloadAfter": 0 // 下行指定字节后开始限速
5657
}
5758
}

0 commit comments

Comments
 (0)