Low-level access to the QUIC Initial Packet for mimicry purposes, hard fork of quic-go. https://quic.tlsfingerprint.io
Find a file
2017-01-14 18:54:15 +07:00
.travis run unit and integration tests separately, only generate coverage reports for unit tests 2016-06-08 15:14:36 +07:00
ackhandler simplify the selection of frames for retransmission 2017-01-14 13:59:57 +07:00
congestion remove unused congestion const 2016-09-05 13:35:09 +02:00
crypto send common certificate sets in the client hello 2017-01-14 18:52:22 +07:00
docs add gopher-logo 2016-05-03 10:27:59 +02:00
example implement a proper Close method for the Client 2017-01-14 18:52:20 +07:00
flowcontrol send connection parameters in CHLO 2017-01-14 18:52:24 +07:00
frames add tests for frame logging 2017-01-04 14:47:01 +07:00
h2quic fix flaky h2quic server test 2017-01-14 18:38:04 +07:00
handshake create an aeadChanged channel in the client crypto setup 2017-01-14 18:52:25 +07:00
integrationtests correcty read PublicHeader of PublicReset packets 2017-01-14 18:45:15 +07:00
protocol detect unsupported versions when parsing version negotiation packet 2017-01-14 18:52:21 +07:00
qerr Don't rely on GOPATH to load the certificates or error codes 2016-12-02 13:52:12 +01:00
testdata Don't rely on GOPATH to load the certificates or error codes 2016-12-02 13:52:12 +01:00
utils parse hostname from address and pass it to the client cryptoSetup 2017-01-14 18:52:19 +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 to Go 1.8rc1 for Travis 2017-01-14 18:44:56 +07:00
appveyor.yml update Go versions for CIs 2016-12-03 14:26:22 +07:00
benchmark_test.go correcty read PublicHeader of PublicReset packets 2017-01-14 18:45:15 +07: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
client.go ignore delayed version negotiation packets 2017-01-14 18:52:24 +07:00
client_test.go fix flaky client tests 2017-01-14 18:52:24 +07:00
codecov.yml move ackhandler.Packet and PacketList shared types to new ackhandler 2016-09-01 20:26:31 +02:00
LICENSE add Google to license file 2016-12-14 11:54:01 +01:00
packet_number_generator.go only increase packet number when sending a packet in PacketPacker 2016-08-16 17:07:03 +07:00
packet_number_generator_test.go only increase packet number when sending a packet in PacketPacker 2016-08-16 17:07:03 +07:00
packet_packer.go send correct version number in PublicHeader 2017-01-14 18:52:25 +07:00
packet_packer_test.go add client functionality to the streamsMap 2017-01-14 18:54:15 +07:00
packet_unpacker.go determine if a received packet is retransmittable 2017-01-09 11:04:29 +07:00
packet_unpacker_test.go remove entropy from packet unpacker and session 2016-09-01 20:26:31 +02:00
public_header.go optimize reading of diversification nonces from the PublicHeader 2017-01-14 18:52:22 +07:00
public_header_test.go error on malformed version negotiation packets 2017-01-14 18:52:21 +07:00
public_reset.go implement parsing of public reset packets 2017-01-07 14:07:59 +07:00
public_reset_test.go implement parsing of public reset packets 2017-01-07 14:07:59 +07:00
quic_suite_test.go add public header parser 2016-04-06 23:10:52 +02:00
README.md fix typo 2016-10-28 12:30:52 +07:00
server.go add tests for certChain, simplify constructor 2017-01-14 18:52:18 +07:00
server_test.go fix flaky client tests 2017-01-14 18:52:24 +07:00
session.go add client functionality to the streamsMap 2017-01-14 18:54:15 +07:00
session_test.go add client functionality to the streamsMap 2017-01-14 18:54:15 +07:00
stream.go don’t add bytes read after receiving a RST_STREAM to flow controller 2017-01-09 10:15:12 +07:00
stream_frame_sorter.go improve overlapping stream data errors 2016-08-06 17:08:23 +02:00
stream_frame_sorter_test.go fix typo 2016-10-28 12:30:52 +07:00
stream_framer.go don't send BlockedFrames after sending the FinBit for a stream 2016-10-27 17:56:02 +07:00
stream_framer_test.go add client functionality to the streamsMap 2017-01-14 18:54:15 +07:00
stream_test.go only retransmit WindowUpdates if no higher WindowUpdate has been sent 2017-01-14 15:16:12 +07:00
streams_map.go add client functionality to the streamsMap 2017-01-14 18:54:15 +07:00
streams_map_test.go add client functionality to the streamsMap 2017-01-14 18:54:15 +07:00
udp_conn.go fix race condition in updConn 2016-11-02 20:03:19 +07:00
unpacked_packet.go determine if a received packet is retransmittable 2017-01-09 11:04:29 +07:00
unpacked_packet_test.go determine if a received packet is retransmittable 2017-01-09 11:04:29 +07: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 34-36
  • 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.