-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SplitHTTP: Rename maxUploadSize to maxUploadBytes, reduce server defaults #3611
Conversation
感觉 Upload 还是不够精准,全改为 Post:
|
|
|
|
I don't have good ideas here. Instead of I suggest that the parameters are actually not renamed and only the defaults are fixed. |
我还是同意mmm的 更何况还是已发布的版本已经有的字段 有的修改为了兼容甚至要拖到下下个版本 但是一个config字段却要直接break(btw 我个人觉得这个协议还在beta阶段 break一下很正常 不用把有的改动还拖到下下个版本) |
按这个改吧,sc 代表 sub-connection |
主要是 ok 那种协议交互的不好改, |
093558b 这个尾部也加上 Ms 吧 |
Ms改名部() |
093558b
to
eb064c9
Compare
准备好了后给我说 |
yeah it's ready |
Since XTLS#3603 and XTLS#3611, iperf and speedtest are triggering "too large upload" by the server. This is because v2ray's MultiBuffer pipe can actually return data larger than the configured size limit. I'm surprised nobody noticed it so far. In principle, any heavy upload could disrupt the entire connection. In its infinite wisdom, speedtest.net hides such errors and only shows low upload instead. I only noticed this issue myself when inspecting server logs.
Since XTLS#3603 and XTLS#3611, iperf and speedtest are triggering "too large upload" by the server. This is because v2ray's MultiBuffer pipe can actually return data larger than the configured size limit. I'm surprised nobody noticed it so far. In principle, any heavy upload could disrupt the entire connection. In its infinite wisdom, speedtest.net hides such errors and only shows low upload instead. I only noticed this issue myself when inspecting server logs.
Since XTLS#3603 and XTLS#3611, iperf and speedtest are triggering "too large upload" by the server. This is because v2ray's MultiBuffer pipe can actually return data larger than the configured size limit. I'm surprised nobody noticed it so far. In principle, any heavy upload could disrupt the entire connection. In its infinite wisdom, speedtest.net hides such errors and only shows low upload instead. I only noticed this issue myself when inspecting server logs.
* maxUploadSize -> scMaxEachPostBytes, default is 1MB on both sides (was 2MB on the server) * minUploadIntervalMs -> scMinPostsIntervalMs, default is 30ms on the client (no server support for now) * maxConcurrentUploads -> scMaxConcurrentPosts, default is 100 on both sides (was 200 on the server)
#3610 (comment)