We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
在singbox那边的mux实现中,smux一直有各种性能问题。但h2mux的性能就很好。 能否在ehco这边也加入h2mux的实现;进一步提升mux的性能。
另外,在go 1.21中,增加了mptcp的支持,也请求增加支持: XTLS/Xray-core#2520
工作原理说明: MPTCP在发送端和接收端建立MPTCP连接,协商使用MPTCP。 MPTCP在发送端和接收端分别建立多个TCP子连接(子流)。 发送端可以将数据分片发送到不同的TCP子流。 接收端会将从不同子流接收的数据汇聚合并,交付给应用层。 子流之间可以传输不同的数据分片,以达到均衡负载和提高网络利用率的目的。 如果某个子连接断开,MPTCP可以快速切换traffic到其他子连接,提高可靠性。
工作原理说明:
The text was updated successfully, but these errors were encountered:
欢迎 pr
Sorry, something went wrong.
test mp tcp #245
de69f9a
b1ed804
No branches or pull requests
在singbox那边的mux实现中,smux一直有各种性能问题。但h2mux的性能就很好。
能否在ehco这边也加入h2mux的实现;进一步提升mux的性能。
另外,在go 1.21中,增加了mptcp的支持,也请求增加支持:
XTLS/Xray-core#2520
The text was updated successfully, but these errors were encountered: