Low-level access to the QUIC Initial Packet for mimicry purposes, hard fork of quic-go. https://quic.tlsfingerprint.io
Find a file
2016-06-27 15:10:41 +07:00
.travis run unit and integration tests separately, only generate coverage reports for unit tests 2016-06-08 15:14:36 +07:00
ackhandlerlegacy fix duplicate and out-of-order ACK detection in SentPacketHandler 2016-06-26 16:15:34 +07:00
ackhandlernew implement packet history to efficiently calculate ACK ranges 2016-06-27 15:10:41 +07:00
congestion change tests such that they are covered by coverage reports 2016-06-06 23:52:12 +07:00
crypto replace version number literals with constants to make grepping easier 2016-06-03 11:09:48 +02:00
docs add gopher-logo 2016-05-03 10:27:59 +02:00
example add tiles to example server and move /echo into /demo scope 2016-06-07 09:16:53 +02:00
flowcontrol use FlowControlManager in Stream for Reading data 2016-06-15 19:39:50 +07:00
frames remove NackRanges from new AckFrame 2016-06-27 11:22:35 +07:00
h2quic fix flaky tests on Travis 2016-06-11 13:24:28 +07:00
handshake use spaces instead of \x00 in handshake message string serialization 2016-06-06 15:00:30 +02:00
integrationtests cleanup drop test 2016-06-08 13:43:06 +07:00
protocol pack QUIC 34 packets with the correct maximum size 2016-06-23 18:23:34 +07:00
qerr change tests such that they are covered by coverage reports 2016-06-06 23:52:12 +07:00
testdata add support for sending intermediate certificate 2016-05-11 12:23:09 +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 use Go 1.7beta2 for Travis and Appveyor 2016-06-20 13:55:49 +07:00
appveyor.yml use Go 1.7beta2 for Travis and Appveyor 2016-06-20 13:55:49 +07:00
blocked_manager.go fix race condition in BlockedManager 2016-06-07 10:42:30 +07:00
blocked_manager_test.go remove stream from BlockManager when a WindowUpdate increases its offset 2016-05-20 12:26:10 +07: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 pack QUIC 34 packets with the correct maximum size 2016-06-23 18:23:34 +07:00
packet_packer_test.go fix duplicate and out-of-order ACK detection in SentPacketHandler 2016-06-26 16:15:34 +07:00
packet_unpacker.go rename AckFrame to AckFrameLegacy 2016-06-21 19:51:26 +07:00
packet_unpacker_test.go rename AckFrame to AckFrameLegacy 2016-06-21 19:51:26 +07: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 fix codecov badge in readme 2016-06-16 22:42:02 +09:00
server.go fix linter 2016-06-03 21:03:46 +02:00
server_test.go add server.Serve() API and improve server tests by listening on port 0 2016-06-03 13:10:04 +02:00
session.go fix duplicate and out-of-order ACK detection in SentPacketHandler 2016-06-26 16:15:34 +07:00
session_test.go fix duplicate and out-of-order ACK detection in SentPacketHandler 2016-06-26 16:15:34 +07:00
stream.go use FlowControlManager in Stream for Reading data 2016-06-15 19:39:50 +07:00
stream_frame_queue.go pass QUIC version number to Frame.MinLength 2016-06-19 13:43:58 +07:00
stream_frame_queue_test.go pass QUIC version number to Frame.MinLength 2016-06-19 13:43:58 +07: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_test.go use FlowControlManager in Stream for Reading data 2016-06-15 19:39:50 +07:00
udp_conn.go require and generate source address tokens in crypto setup 2016-05-24 11:20:16 +02:00
window_update_manager.go fix a typo 2016-05-27 21:44:57 +02:00
window_update_manager_test.go fix a typo 2016-05-27 21:44:57 +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, chacha20-poly1305 as 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 our fork of caddy. 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.