@@ -46,13 +46,15 @@ TODO List: TODO
46
46
" " , // If there is this item, the client shortId can be empty
47
47
" 0123456789abcdef" // 0 to f, the length is a multiple of 2, the maximum length is 16
48
48
],
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)
56
58
}
57
59
}
58
60
}
0 commit comments