EAimTY
EAimTY
TCP relaying 与 UDP relaying 并非是两种“模式”,只是将 client 端 TCP 与 UDP 转发到 server 端各自的方式而已,相互间没有替代关系。 UDP relaying 部分目前还有很多 BUG 与设计上的问题需要解决,之后会尽快更新修复。
Does the client report the same error even with `--cert` set?
I can't reproduce this problem. I self signed an ECDSA certificate with `PKCS_ECDSA_P256_SHA256` using [regen](https://github.com/est31/rcgen) and it works fine. Please double check the issuer and subject alt names of your...
I don't think so. I was using custom IP parameter too: ```bash tuic-server -p 5000 -t TKN -c cert.pem -k key.pem ``` ```bash tuic-client -s localhost --server-ip 127.0.0.1 -p 5000...
You should try running tuic with your certificate on another machine to see if the problem is really caused by your certificate, or your outdated system.
ref. #40 New version [0.8.0-beta0](https://github.com/EAimTY/tuic/releases/tag/0.8.0-beta0) now supports setting multiple custom certificates on client.
你的主题基于的 materiality-typecho-theme 版本不是最新的,而且替换 highlight.js 的版本也不是最新的
Client 端需要提供完整的 **证书链**。如果是用自签证书,推荐使用 [rcgen](https://github.com/est31/rcgen) 生成
Bug: `quinn::connection::Connection::open_bi` will hang when reach `max_concurrent_bi_streams` limit
最近正在重构,打算用思路 1 解决这个问题。 quinn 的文档中提到的 [`max_concurrent_uni_streams`](https://docs.rs/quinn/latest/quinn/struct.Connection.html#method.set_max_concurrent_uni_streams): > Modify the number of remotely initiated unidirectional streams that may be concurrently open 因此 `max_concurrent_uni_streams` 的数值应只会影响 streams initiated by peer。目前 TUIC 的 register...
If you mean the password authentication, actually it is quite simple. You can find an example at https://github.com/EAimTY/tuic/blob/0303155b28a24cd0fa2e9efa8832dd914fe74a5a/client/src/config.rs#L116 and https://github.com/EAimTY/tuic/blob/0303155b28a24cd0fa2e9efa8832dd914fe74a5a/client/src/socks5/mod.rs#L46 If you would like to implement a custom auth method,...