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-06 17:45:32 +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 fix some typos 2016-08-06 14:46:09 +02:00
ackhandlerlegacy fix some typos 2016-08-06 14:46:09 +02:00
congestion change tests such that they are covered by coverage reports 2016-06-06 23:52:12 +07:00
crypto disable chacha20 build until we have solved the dependency situation 2016-08-01 16:28:22 +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 fix some typos 2016-08-06 14:46:09 +02:00
h2quic fix flaky h2quic tests 2016-08-06 17:27:16 +02:00
handshake improve handshake package coverage 2016-08-02 12:04:25 +02:00
integrationtests set known flaky tests to pending 2016-08-06 15:00:16 +02: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 delete unused ringbuffer class 2016-08-02 12:35:22 +02: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.7rc5 for CIs 2016-08-04 12:13:15 +07:00
appveyor.yml update go to 1.7rc5 for CIs 2016-08-04 12:13:15 +07:00
benchmark_test.go set known flaky tests to pending 2016-08-06 15:00:16 +02:00
buffer_pool.go add a buffer pool test for wrong-sized puts 2016-08-06 17:45:32 +02:00
buffer_pool_test.go add a buffer pool test for wrong-sized puts 2016-08-06 17:45:32 +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 make PublicHeader public 2016-08-04 15:45:11 +07:00
packet_packer_test.go use StreamsMap in Session and StreamFramer 2016-08-05 19:30:28 +07:00
packet_unpacker.go fix packet unpacker in-place encryption 2016-08-05 11:33:15 +02:00
packet_unpacker_test.go make PublicHeader public 2016-08-04 15:45:11 +07:00
public_header.go also make ParsePublicHeader public 2016-08-05 00:12:08 +07:00
public_header_test.go also make ParsePublicHeader public 2016-08-05 00:12:08 +07: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 fix codecov badge in readme 2016-08-02 14:20:03 +02:00
server.go also make ParsePublicHeader public 2016-08-05 00:12:08 +07:00
server_test.go make PublicHeader public 2016-08-04 15:45:11 +07:00
session.go remove unneeded streamsMutex from Session 2016-08-06 17:45:21 +07:00
session_test.go use StreamsMap in Session and StreamFramer 2016-08-05 19:30:28 +07:00
stream.go fix a race condition in stream.Write 2016-08-05 11:33:19 +02:00
stream_frame_sorter.go improve overlapping stream data errors 2016-08-06 17:08:23 +02:00
stream_frame_sorter_test.go improve overlapping stream data errors 2016-08-06 17:08:23 +02:00
stream_framer.go use round-robin scheduling in StreamFramer 2016-08-06 17:01:28 +07:00
stream_framer_test.go use round-robin scheduling in StreamFramer 2016-08-06 17:01:28 +07:00
stream_test.go improve overlapping stream data errors 2016-08-06 17:08:23 +02:00
streams_map.go only increase round-robin index when lambda returns true 2016-08-06 17:00:33 +07:00
streams_map_test.go fix some typos 2016-08-06 14:46:09 +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 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

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 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)

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.