KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
tcp2quic
★ 20
Open GitHub ↗
TCP ⇋ QUIC
Download README (.md)
Explore Similar Repositories
md2gmi
:
Converts Markdown to Gemini gemtext with Go. Working with streams and UNIX pipes, utilizing Go channels. Processes streams of input line by line and forwards blocks to the next pipeline stage.
A-CFD-Tutorial-in-Julia
:
No description available.
The-Complete-FAANG-Preparation
:
No description available.
shanjupay
:
聚合支付平台,线上聚合收银台(开放API),线下C2B一码多 付、线下B2C商家扫码。平台应以SaaS服务形式提供给各商户订单管理、门店管理、财务数据统计等基础服务。
zadig-bootcamp
:
The bootcamp for Zadig.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
tcp2quic
?
Download (.md)
## TCP2QUIC TCP is so widely used, however QUIC may have a better performance. For softwares which use protocols built on TCP, this program helps them take FULL advantage of QUIC. ## Usage ``` #tcp->quic tcp2quic -c <tcp_addr> <quic_addr> <sni=localhost> #quic->tcp tcp2quic -s <quic_addr> <tcp_addr> <common_name=localhost> ``` ## Security The server generates self-signed certificate automatically, with the common name(CN) "localhost" by default. While the client always SKIP verification during a TLS handshake. Also, 0-rtt is enabled, at the risk of suffering from replay attack or MITM attack. <br> In general, you should NEVER rely on this program for security, though the traffic is still encrypted.