Low-level access to the QUIC Initial Packet for mimicry purposes, hard fork of quic-go. https://quic.tlsfingerprint.io
Find a file
2016-07-26 15:36:28 +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 use the same interface for new and legacy AckHandlers 2016-07-26 18:31:54 +07:00
ackhandlerlegacy use the same interface for new and legacy AckHandlers 2016-07-26 18:31:54 +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 use an RWMutex in flowControlManager 2016-07-09 18:11:41 +02:00
frames wrap legacy AckFrame in new AckFrame 2016-07-26 12:05:31 +07:00
h2quic fix flaky tests on Travis 2016-06-11 13:24:28 +07:00
handshake update AEADs to allow in-place encryption and decryption 2016-07-26 15:13:15 +02:00
integrationtests switch to custom selenium chrome image with current stable chrome 2016-07-22 16:25:01 +02:00
protocol remove session.maybeSendPacket, restrict small frame detection to ACKs 2016-07-26 13:44:07 +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 version for CIs to 1.7rc2 2016-07-21 09:10:49 +02:00
appveyor.yml update go version for CIs to 1.7rc2 2016-07-21 09:10:49 +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 update AEADs to allow in-place encryption and decryption 2016-07-26 15:13:15 +02:00
packet_unpacker_test.go update AEADs to allow in-place encryption and decryption 2016-07-26 15:13:15 +02:00
public_header.go replace version number literals with constants to make grepping easier 2016-06-03 11:09:48 +02:00
public_header_test.go replace version number literals with constants to make grepping easier 2016-06-03 11:09:48 +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 crypto and caddy links in readme 2016-07-14 01:42:05 +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 add a sync.Pool of byte buffers with maximum packet size as cap 2016-07-26 15:36:28 +02:00
session_test.go add a sync.Pool of byte buffers with maximum packet size as cap 2016-07-26 15:36:28 +02:00
stream.go remove stream.contributesToConnectionFlowControl 2016-07-11 17:54:22 +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 remove streamFramer.EstimatedDataLen 2016-07-26 13:44:09 +02:00
stream_framer_test.go remove streamFramer.EstimatedDataLen 2016-07-26 13:44:09 +02:00
stream_test.go remove session pointer from stream and use a lambda to signal new data 2016-07-11 14:57:54 +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 30-33
  • 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
  • Support for QUIC version 34
  • 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.