mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
Low-level access to the QUIC Initial Packet for mimicry purposes, hard fork of quic-go.
https://quic.tlsfingerprint.io
ackhandler | ||
congestion | ||
crypto | ||
docs | ||
errorcodes | ||
example | ||
frames | ||
handshake | ||
protocol | ||
utils | ||
.editorconfig | ||
.gitignore | ||
.travis.yml | ||
LICENSE | ||
packet_number.go | ||
packet_number_test.go | ||
packet_packer.go | ||
packet_packer_test.go | ||
packet_unpacker.go | ||
packet_unpacker_test.go | ||
public_header.go | ||
public_header_test.go | ||
public_reset.go | ||
public_reset_test.go | ||
quic_suite_test.go | ||
README.md | ||
server.go | ||
server_test.go | ||
session.go | ||
session_test.go | ||
stream.go | ||
stream_frame_queue.go | ||
stream_frame_queue_test.go | ||
stream_test.go | ||
udp_conn.go |
A QUIC implementation in native Go

This is very much an incomplete, buggy, unperformant and insecure work in progress :)
Installing deps:
go get -t
Running the example server:
go run example/main.go
Using the quic_client
from chromium:
quic_client --host=127.0.0.1 --port=6121 --v=1 https://quic.clemente.io
Using Chrome:
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --user-data-dir=/tmp/chrome --no-proxy-server --enable-quic --origin-to-force-quic-on=quic.clemente.io:443 --host-resolver-rules='MAP quic.clemente.io:443 127.0.0.1:6121' https://quic.clemente.io