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-05 11:33:27 +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 don't NACK already retransmitted packets in v34 2016-08-04 22:24:43 +02:00
ackhandlerlegacy increase legacy highestInOrderObserved properly with reordering 2016-08-04 23:00:32 +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 improve logging of legacy ACK frames 2016-08-03 11:49:19 +07:00
h2quic drop support for v31 2016-07-29 15:22:56 +02:00
handshake improve handshake package coverage 2016-08-02 12:04:25 +02:00
integrationtests fix flaky drop tests by working around the div-nonce type byte issue 2016-08-05 11:33:27 +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
buffer_pool.go panic when trying to store a wrong-sized buffer in the buffer pool 2016-08-05 11:33:27 +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 make PublicHeader public 2016-08-04 15:45:11 +07: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 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 make PublicHeader public 2016-08-04 15:45:11 +07:00
session_test.go make PublicHeader public 2016-08-04 15:45:11 +07:00
stream.go fix a race condition in stream.Write 2016-08-05 11:33:19 +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 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.