-
Notifications
You must be signed in to change notification settings - Fork 43
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
作者能否提供一下xtls属性的说明文档? #8
Comments
目前还在开发和仅 v2ray 测试中,随时可能 breaking,所以现在不会写详细的技术文档,不过我有空时会先写个简单的原理说明。 PS:代码不难,会 Go 的花点时间应该就能看懂 |
19 是 TLSv1.3 alert 消息的常见密文长度,这里认为它可能是TLSv1.3 的 alert |
严格上来说使用 c.index 为 0 时的 得到的 type 判断是否为 recordTypeAlert 应该更可靠吧。 |
TLSv1.3 的 alert 也是 23,同时代码中也有检测并替换 TLSv1.2 的 alert |
两个疑问? |
都对 |
需要关注一下 Direct Mode 的 ReadV 增强 |
目前 XTLS 是只检测 TLS data record,但在一些极端情况下(如本地测试)可能难以触发特殊功能,以后或许会改成从 handshake 就开始跟踪 |
如果有一个协议文档比较好。可以先定义好协议,比如从某个tls record开始原文转发。 |
这里是经过反复修改和深思熟虑后,决定以第一个检测到的 data record 为信号,之后的原样转发(origin 有监督,direct 基本无) 这个信号需要有,即不能随时“接收方解密失败则认为是原文”,一是总要 backup,性能不佳,二是允许了中间人操作。 |
比如这些:
Go/conn.go
Lines 105 to 125 in 207fdca
另能否提供一下xtls的协议说明文档?方便在其它语言里实现该协议。
The text was updated successfully, but these errors were encountered: