Low-level access to the QUIC Initial Packet for mimicry purposes, hard fork of quic-go. https://quic.tlsfingerprint.io
Find a file
Marten Seemann a8b603b7bf don't negotiate the idle timeout
The idle timeout doesn't need to be negotiated, simply announcing it to
the peer is sufficient. We now close the session if there's no incoming
network activity for the duration of the local idle timeout, and we
send a PING frame after half the remote idle timeout (if keep alives are
enabled).
2017-10-02 18:16:27 -07:00
.travis Merge pull request #762 from lucas-clemente/improve-travis-output 2017-08-28 17:52:14 +07:00
ackhandler shorten variable names in the AckRange struct 2017-09-22 19:34:53 +07:00
benchmark implement a string representation of the version number 2017-09-28 15:19:12 +07:00
congestion make the protocol package internal 2017-08-30 00:19:44 +07:00
docs add gopher-logo 2016-05-03 10:27:59 +02:00
example Update certs 2017-09-28 08:56:31 +02:00
h2quic rename connection ID truncation to connection ID omission 2017-09-29 22:52:54 +07:00
integrationtests add an integration test for invalid certificates 2017-10-02 16:47:40 +08:00
internal don't negotiate the idle timeout 2017-10-02 18:16:27 -07:00
qerr implement Timeout() for QuicError 2017-06-20 16:39:29 +08:00
.editorconfig add editorconfig 2016-04-15 12:13:33 +02:00
.gitignore add debug.test (dvelve output) to gitignore 2016-05-03 14:26:50 +02:00
.travis.yml use type aliases to export types declared in the protocols package 2017-08-31 16:36:52 +07:00
appveyor.yml enable logging via command line flag in benchmark tests 2017-09-15 16:54:49 +07:00
buffer_pool.go make the protocol package internal 2017-08-30 00:19:44 +07:00
buffer_pool_test.go make the protocol package internal 2017-08-30 00:19:44 +07:00
Changelog.md rename connection ID truncation to connection ID omission 2017-09-29 22:52:54 +07:00
client.go rename connection ID truncation to connection ID omission 2017-09-29 22:52:54 +07:00
client_test.go rename connection ID truncation to connection ID omission 2017-09-29 22:52:54 +07:00
codecov.yml fix Codecov for the internal package 2017-06-11 11:33:10 +02:00
conn.go add a LocalAddr to the Session 2017-03-10 00:07:27 +07:00
conn_test.go add a LocalAddr to the Session 2017-03-10 00:07:27 +07:00
interface.go rename connection ID truncation to connection ID omission 2017-09-29 22:52:54 +07:00
LICENSE add Google to license file 2016-12-14 11:54:01 +01:00
packet_number_generator.go make the protocol package internal 2017-08-30 00:19:44 +07:00
packet_number_generator_test.go make the protocol package internal 2017-08-30 00:19:44 +07:00
packet_packer.go rename connection ID truncation to connection ID omission 2017-09-29 22:52:54 +07:00
packet_packer_test.go rename connection ID truncation to connection ID omission 2017-09-29 22:52:54 +07:00
packet_unpacker.go make the protocol package internal 2017-08-30 00:19:44 +07:00
packet_unpacker_test.go drop support for version 36 2017-09-25 20:07:34 +07:00
quic_suite_test.go Mock FlowControlManager using gomock 2017-06-08 16:06:31 +02:00
README.md use type aliases to export types declared in the protocols package 2017-08-31 16:36:52 +07:00
server.go implement a string representation of the version number 2017-09-28 15:19:12 +07:00
server_test.go copy KeepAlive value from the server quic.Config 2017-09-22 20:28:11 +07:00
session.go don't negotiate the idle timeout 2017-10-02 18:16:27 -07:00
session_test.go don't negotiate the idle timeout 2017-10-02 18:16:27 -07:00
stream.go make the flow control package internal 2017-08-30 00:27:44 +07:00
stream_frame_sorter.go make the protocol package internal 2017-08-30 00:19:44 +07:00
stream_frame_sorter_test.go make the protocol package internal 2017-08-30 00:19:44 +07:00
stream_framer.go make the flow control package internal 2017-08-30 00:27:44 +07:00
stream_framer_test.go correctly pack packets with sealers with different overheads 2017-09-08 12:04:45 +03:00
stream_test.go make the protocol package internal 2017-08-30 00:19:44 +07:00
streams_map.go rename the ConnectionParametersManager to ParamsNegotiator 2017-09-28 18:15:33 +07:00
streams_map_test.go rename the ConnectionParametersManager to ParamsNegotiator 2017-09-28 18:15:33 +07:00

A QUIC implementation in pure Go

Godoc Reference Linux Build Status Windows Build Status Code Coverage

quic-go is an implementation of the QUIC protocol in Go.

Roadmap

quic-go is compatible with the current version(s) of Google Chrome and QUIC as deployed on Google's servers. We're actively tracking the development of the Chrome code to ensure compatibility as the protocol evolves. In that process, we're dropping support for old QUIC versions. As Google's QUIC versions are expected to converge towards the IETF QUIC draft, quic-go will eventually implement that draft.

Guides

We currently support Go 1.9+.

Installing and updating dependencies:

go get -t -u ./...

Running tests:

go test ./...

Running the example server

go run example/main.go -www /var/www/

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

QUIC without HTTP/2

Take a look at this echo example.

Using the example client

go run example/client/main.go https://clemente.io

Usage

As a server

See the example server or try out Caddy (from version 0.9, instructions here). 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 want-help. If you have any questions, please feel free to reach out by opening an issue or leaving a comment.