Amir Khan 3ab7eb7a4c Updated QUIC server Source Connection ID Length 2 anni fa
..
http3 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
internal 3ab7eb7a4c Updated QUIC server Source Connection ID Length 2 anni fa
logging 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
quicvarint 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
.gitignore 8a972ef75d Use Go modules 3 anni fa
.golangci.yml 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
Changelog.md 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
LICENSE 32917dfb51 Vendor Psiphon-Labs/quic-go 6 anni fa
README.md 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
SECURITY.md 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
buffer_pool.go e5058296d5 Update vendored quic-go 4 anni fa
client.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
closed_conn.go c1e6807d1c Upgrade quic-go 3 anni fa
codecov.yml c1e6807d1c Upgrade quic-go 3 anni fa
config.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
conn_id_generator.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
conn_id_manager.go 71135c831e Update vendored Psiphon-Labs/quic-go 3 anni fa
connection.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
connection_timer.go 15ceeb6cfa Update quic-go and its dependencies 3 anni fa
crypto_stream.go c1e6807d1c Upgrade quic-go 3 anni fa
crypto_stream_manager.go 9b6aef8cec Updated vendored dependencies for IETF-draft-29 5 anni fa
datagram_queue.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
errors.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
frame_sorter.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
framer.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
interface.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
mockgen.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
mtu_discoverer.go c1e6807d1c Upgrade quic-go 3 anni fa
multiplexer.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
packet_handler_map.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
packet_packer.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
packet_unpacker.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
receive_stream.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
retransmission_queue.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
send_conn.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
send_queue.go 71135c831e Update vendored Psiphon-Labs/quic-go 3 anni fa
send_stream.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
server.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
stream.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
streams_map.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
streams_map_incoming.go c1e6807d1c Upgrade quic-go 3 anni fa
streams_map_outgoing.go c1e6807d1c Upgrade quic-go 3 anni fa
sys_conn.go c1e6807d1c Upgrade quic-go 3 anni fa
sys_conn_buffers.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
sys_conn_buffers_write.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
sys_conn_df.go c1e6807d1c Upgrade quic-go 3 anni fa
sys_conn_df_linux.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
sys_conn_df_windows.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
sys_conn_helper_darwin.go c1e6807d1c Upgrade quic-go 3 anni fa
sys_conn_helper_freebsd.go c1e6807d1c Upgrade quic-go 3 anni fa
sys_conn_helper_linux.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
sys_conn_helper_nonlinux.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
sys_conn_no_oob.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
sys_conn_oob.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
sys_conn_windows.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
token_store.go b5db6ee0b6 Update vendored Psiphon-Labs/quic-go 3 anni fa
tools.go 71135c831e Update vendored Psiphon-Labs/quic-go 3 anni fa
transport.go 8b664ea29e Updated quic-go to v0.35.1 2 anni fa
window_update_queue.go 9b6aef8cec Updated vendored dependencies for IETF-draft-29 5 anni fa

README.md

A QUIC implementation in pure Go

PkgGoDev Code Coverage

quic-go is an implementation of the QUIC protocol (RFC 9000, RFC 9001, RFC 9002) in Go, including the Unreliable Datagram Extension (RFC 9221) and Datagram Packetization Layer Path MTU Discovery (DPLPMTUD, RFC 8899). It has support for HTTP/3 (RFC 9114), including QPACK (RFC 9204).

In addition to the RFCs listed above, it currently implements the IETF QUIC draft-29. Support for draft-29 will eventually be dropped, as it is phased out of the ecosystem.

Guides

We currently support Go 1.19.x and Go 1.20.x

Running tests:

go test ./...

QUIC without HTTP/3

Take a look at this echo example.

Usage

As a server

See the example server. Starting a QUIC server is very similar to the standard lib http in go:

http.Handle("/", http.FileServer(http.Dir(wwwDir)))
http3.ListenAndServeQUIC("localhost:4242", "/path/to/cert/chain.pem", "/path/to/privkey.pem", nil)

As a client

See the example client. Use a http3.RoundTripper as a Transport in a http.Client.

http.Client{
  Transport: &http3.RoundTripper{},
}

Projects using quic-go

Project Description Stars
AdGuardHome Free and open source, powerful network-wide ads & trackers blocking DNS server. GitHub Repo stars
algernon Small self-contained pure-Go web server with Lua, Markdown, HTTP/2, QUIC, Redis and PostgreSQL support GitHub Repo stars
caddy Fast, multi-platform web server with automatic HTTPS GitHub Repo stars
cloudflared A tunneling daemon that proxies traffic from the Cloudflare network to your origins GitHub Repo stars
go-libp2p libp2p implementation in Go, powering Kubo (IPFS) and Lotus (Filecoin), among others GitHub Repo stars
Mercure An open, easy, fast, reliable and battery-efficient solution for real-time communications GitHub Repo stars
OONI Probe Next generation OONI Probe. Library and CLI tool. GitHub Repo stars
syncthing Open Source Continuous File Synchronization GitHub Repo stars
traefik The Cloud Native Application Proxy GitHub Repo stars
v2ray-core A platform for building proxies to bypass network restrictions GitHub Repo stars
YoMo Streaming Serverless Framework for Geo-distributed System GitHub Repo stars

Contributing

We are always happy to welcome new contributors! We have a number of self-contained issues that are suitable for first-time contributors, they are tagged with help wanted. If you have any questions, please feel free to reach out by opening an issue or leaving a comment.