jason 075d766964 first 3 lat temu
..
.circleci 075d766964 first 3 lat temu
.travis 075d766964 first 3 lat temu
benchmark 075d766964 first 3 lat temu
docs 075d766964 first 3 lat temu
example 075d766964 first 3 lat temu
h2quic 075d766964 first 3 lat temu
integrationtests 075d766964 first 3 lat temu
internal 075d766964 first 3 lat temu
.editorconfig 075d766964 first 3 lat temu
.gitignore 075d766964 first 3 lat temu
.golangci.yml 075d766964 first 3 lat temu
.travis.yml 075d766964 first 3 lat temu
Changelog.md 075d766964 first 3 lat temu
LICENSE 075d766964 first 3 lat temu
README.md 075d766964 first 3 lat temu
appveyor.yml 075d766964 first 3 lat temu
buffer_pool.go 075d766964 first 3 lat temu
buffer_pool_test.go 075d766964 first 3 lat temu
client.go 075d766964 first 3 lat temu
client_test.go 075d766964 first 3 lat temu
codecov.yml 075d766964 first 3 lat temu
conn.go 075d766964 first 3 lat temu
conn_test.go 075d766964 first 3 lat temu
crypto_stream.go 075d766964 first 3 lat temu
crypto_stream_manager.go 075d766964 first 3 lat temu
crypto_stream_manager_test.go 075d766964 first 3 lat temu
crypto_stream_test.go 075d766964 first 3 lat temu
frame_sorter.go 075d766964 first 3 lat temu
frame_sorter_test.go 075d766964 first 3 lat temu
framer.go 075d766964 first 3 lat temu
framer_test.go 075d766964 first 3 lat temu
go.mod 075d766964 first 3 lat temu
go.sum 075d766964 first 3 lat temu
interface.go 075d766964 first 3 lat temu
mock_ack_frame_source_test.go 075d766964 first 3 lat temu
mock_crypto_data_handler_test.go 075d766964 first 3 lat temu
mock_crypto_stream_test.go 075d766964 first 3 lat temu
mock_frame_source_test.go 075d766964 first 3 lat temu
mock_multiplexer_test.go 075d766964 first 3 lat temu
mock_packer_test.go 075d766964 first 3 lat temu
mock_packet_handler_manager_test.go 075d766964 first 3 lat temu
mock_packet_handler_test.go 075d766964 first 3 lat temu
mock_quic_session_test.go 075d766964 first 3 lat temu
mock_receive_stream_internal_test.go 075d766964 first 3 lat temu
mock_sealing_manager_test.go 075d766964 first 3 lat temu
mock_send_stream_internal_test.go 075d766964 first 3 lat temu
mock_session_runner_test.go 075d766964 first 3 lat temu
mock_stream_getter_test.go 075d766964 first 3 lat temu
mock_stream_internal_test.go 075d766964 first 3 lat temu
mock_stream_manager_test.go 075d766964 first 3 lat temu
mock_stream_sender_test.go 075d766964 first 3 lat temu
mock_unknown_packet_handler_test.go 075d766964 first 3 lat temu
mock_unpacker_test.go 075d766964 first 3 lat temu
mockgen.go 075d766964 first 3 lat temu
mockgen_private.sh 075d766964 first 3 lat temu
multiplexer.go 075d766964 first 3 lat temu
multiplexer_test.go 075d766964 first 3 lat temu
packet_handler_map.go 075d766964 first 3 lat temu
packet_handler_map_test.go 075d766964 first 3 lat temu
packet_packer.go 075d766964 first 3 lat temu
packet_packer_test.go 075d766964 first 3 lat temu
packet_unpacker.go 075d766964 first 3 lat temu
packet_unpacker_test.go 075d766964 first 3 lat temu
quic_suite_test.go 075d766964 first 3 lat temu
receive_stream.go 075d766964 first 3 lat temu
receive_stream_test.go 075d766964 first 3 lat temu
send_stream.go 075d766964 first 3 lat temu
send_stream_test.go 075d766964 first 3 lat temu
server.go 075d766964 first 3 lat temu
server_test.go 075d766964 first 3 lat temu
session.go 075d766964 first 3 lat temu
session_test.go 075d766964 first 3 lat temu
stream.go 075d766964 first 3 lat temu
stream_test.go 075d766964 first 3 lat temu
streams_map.go 075d766964 first 3 lat temu
streams_map_generic_helper.go 075d766964 first 3 lat temu
streams_map_incoming_bidi.go 075d766964 first 3 lat temu
streams_map_incoming_generic.go 075d766964 first 3 lat temu
streams_map_incoming_generic_test.go 075d766964 first 3 lat temu
streams_map_incoming_uni.go 075d766964 first 3 lat temu
streams_map_outgoing_bidi.go 075d766964 first 3 lat temu
streams_map_outgoing_generic.go 075d766964 first 3 lat temu
streams_map_outgoing_generic_test.go 075d766964 first 3 lat temu
streams_map_outgoing_uni.go 075d766964 first 3 lat temu
streams_map_test.go 075d766964 first 3 lat temu
window_update_queue.go 075d766964 first 3 lat temu
window_update_queue_test.go 075d766964 first 3 lat temu

README.md

A QUIC implementation in pure Go

Godoc Reference Travis Build Status CircleCI Build Status Windows Build Status Code Coverage

quic-go is an implementation of the QUIC protocol in Go. It roughly implements the IETF QUIC draft, although we don't fully support any of the draft versions at the moment.

Version compatibility

Since quic-go is under active development, there's no guarantee that two builds of different commits are interoperable. The QUIC version used in the master branch is just a placeholder, and should not be considered stable.

If you want to use quic-go as a library in other projects, please consider using a tagged release. These releases expose experimental QUIC versions, which are guaranteed to be stable.

Google QUIC

quic-go used to support both the QUIC versions supported by Google Chrome and QUIC as deployed on Google's servers, as well as IETF QUIC. Due to the divergence of the two protocols, we decided to not support both versions any more.

The master branch only supports IETF QUIC. For Google QUIC support, please refer to the gquic branch.

Guides

We currently support Go 1.12+.

Installing and updating dependencies:

go get -t -u ./...

Running tests:

go test ./...

HTTP mapping

We're currently not implementing the HTTP mapping as described in the QUIC over HTTP draft. The HTTP mapping here is a leftover from Google QUIC.

QUIC without HTTP/2

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)))
h2quic.ListenAndServeQUIC("localhost:4242", "/path/to/cert/chain.pem", "/path/to/privkey.pem", nil)

As a client

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

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

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.