Low-level access to the QUIC Initial Packet for mimicry purposes, hard fork of quic-go. https://quic.tlsfingerprint.io
Find a file
2016-08-01 15:44:08 +02:00
.travis run unit and integration tests separately, only generate coverage reports for unit tests 2016-06-08 15:14:36 +07:00
ackhandler update StopWaitings when queueing retransmissions 2016-07-30 15:15:51 +07:00
ackhandlerlegacy send a StopWaiting with every ACK in QUIC 34 2016-07-29 18:02:43 +07:00
congestion change tests such that they are covered by coverage reports 2016-06-06 23:52:12 +07:00
crypto update AEADs to allow in-place encryption and decryption 2016-07-26 15:13:15 +02:00
docs add gopher-logo 2016-05-03 10:27:59 +02:00
example improve tiles demo and remove an empty file 2016-07-08 18:21:46 +02:00
flowcontrol fix receive flow control windows diverging 2016-08-01 15:44:08 +02:00
frames drop support for v31 2016-07-29 15:22:56 +02:00
h2quic drop support for v31 2016-07-29 15:22:56 +02:00
handshake drop support for v30 2016-07-29 15:22:56 +02:00
integrationtests add an integration test with random RTTs 2016-08-01 16:06:15 +07:00
protocol drop support for v31 2016-07-29 15:22:56 +02:00
qerr change tests such that they are covered by coverage reports 2016-06-06 23:52:12 +07:00
testdata remove DER certificates and use PEMs instead 2016-07-05 12:23:51 +02:00
utils implement packet history to efficiently calculate ACK ranges 2016-06-27 15:10:41 +07: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 update go to 1.7rc3 for CIs 2016-07-26 18:37:39 +02:00
appveyor.yml update go to 1.7rc3 for CIs 2016-07-26 18:37:39 +02:00
buffer_pool.go add a sync.Pool of byte buffers with maximum packet size as cap 2016-07-26 15:36:28 +02:00
buffer_pool_test.go add a sync.Pool of byte buffers with maximum packet size as cap 2016-07-26 15:36:28 +02:00
codecov.yml implement packet history to efficiently calculate ACK ranges 2016-06-27 15:10:41 +07:00
LICENSE add MIT license file 2016-05-02 11:24:13 +02:00
packet_packer.go add a sync.Pool of byte buffers with maximum packet size as cap 2016-07-26 15:36:28 +02:00
packet_packer_test.go remove session.maybeSendPacket, restrict small frame detection to ACKs 2016-07-26 13:44:07 +02:00
packet_unpacker.go minor packet unpacker optimization 2016-07-26 18:37:18 +02:00
packet_unpacker_test.go use in-place decryption when unpacking 2016-07-26 18:33:48 +02:00
public_header.go remove unused member from PublicHeader 2016-07-30 14:38:25 +07:00
public_header_test.go drop support for v30 2016-07-29 15:22:56 +02:00
public_reset.go slightly simplify public reset writing 2016-05-17 19:24:49 +02:00
public_reset_test.go slightly simplify public reset writing 2016-05-17 19:24:49 +02:00
quic_suite_test.go add public header parser 2016-04-06 23:10:52 +02:00
README.md update readme with version support 2016-07-29 15:22:56 +02:00
server.go add a sync.Pool of byte buffers with maximum packet size as cap 2016-07-26 15:36:28 +02:00
server_test.go update AEADs to allow in-place encryption and decryption 2016-07-26 15:13:15 +02:00
session.go send a StopWaiting with every ACK in QUIC 34 2016-07-29 18:02:43 +07:00
session_test.go improve flaky session test 2016-07-29 15:14:46 +02:00
stream.go trigger sending when stream data is read 2016-07-28 16:52:04 +02:00
stream_frame_sorter.go limit number of gaps in received StreamFrame data 2016-06-01 15:41:29 +07:00
stream_frame_sorter_test.go limit number of gaps in received StreamFrame data 2016-06-01 15:41:29 +07:00
stream_framer.go change fcm.SendWindowSize to include conn window to simplify framer 2016-07-26 17:06:54 +02:00
stream_framer_test.go add a test that the framer does not emit empty frames 2016-07-28 17:02:06 +02:00
stream_test.go trigger sending when stream data is read 2016-07-28 16:52:04 +02:00
udp_conn.go require and generate source address tokens in crypto setup 2016-05-24 11:20:16 +02:00

A QUIC server 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. While we're not far from being feature complete, there's still a lot of work to do regarding performance and security. At the moment, we do not recommend use in production systems. We appreciate any feedback :)

Roadmap

Done:

  • Basic protocol with support for QUIC version 32-34
  • HTTP/2 support
  • Crypto (RSA / ECDSA certificates, curve25519 for key exchange, AES-GCM or Chacha20-Poly1305 as stream cipher)
  • Loss detection and retransmission (currently fast retransmission & RTO)
  • Flow Control
  • Congestion control using cubic

Major TODOs:

  • Security, especially DOS protections
  • Performance
  • Better packet loss detection
  • Connection migration
  • QUIC client
  • Public API design
  • Integration into caddy (mostly to figure out the right server API)

Guides

Installing deps:

go get -t

Running tests:

go test ./...

Running the example server:

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

Using the quic_client from chromium:

quic_client --quic-version=32 --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

Usage

See the example server or the current beta version of Caddy (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)

Building on Windows

Due to the low Windows timer resolution (see StackOverflow question) available with Go 1.6.x, some optimizations might not work when compiled with this version of the compiler. Please use Go 1.7 on Windows.