This repository has been archived by the owner on Mar 17, 2024. It is now read-only.
关于quic的讨论 #18
e1732a364fed
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
根据我目前的分析,quic是较难把层级区分开的。quic横跨了 传输层、tls层 和高级层;关键是它是监听udp的,这个就有些难办。
quic用了独特的 session方式来区分每一个udp链接,相当于还有个会话层。
而本作的udp监听的实现实际上是模仿的tcp链接,做出来一个1:1 的链接模型。
然而quic则不是。它客户端就算变换了ip,只要session不变,仍然会被视为同一个客户端
实际上quic的思路很聪明,值得学习。不分层也是能加入verysimple的,我处理一下即可
Beta Was this translation helpful? Give feedback.
All reactions