Low-level access to the QUIC Initial Packet for mimicry purposes, hard fork of quic-go. https://quic.tlsfingerprint.io
Find a file
2016-04-21 17:03:29 +02:00
ackhandler store the end of the NACK range instead of its length 2016-04-21 18:42:52 +07:00
crypto fix randomness 2016-04-21 13:48:42 +02:00
errorcodes create a QuicError type 2016-04-19 15:54:18 +07:00
example fix content-length handling and multiple writes in http2 responsewriter 2016-04-19 14:35:02 +02:00
frames mock MaxLength for RST_STREAM and STOP_WAITING 2016-04-21 13:48:41 +02:00
handshake fix randomness 2016-04-21 13:48:42 +02:00
protocol simplify session by moving packet packing to separate class 2016-04-21 13:48:41 +02:00
utils add support for NACK ranges when writing ACK frames 2016-04-20 11:57:09 +07:00
.editorconfig add editorconfig 2016-04-15 12:13:33 +02:00
.travis.yml add travis.yml 2016-04-07 17:10:20 +02:00
packet_packer.go fix a packet packer race 2016-04-21 17:02:26 +02:00
packet_packer_test.go simplify session by moving packet packing to separate class 2016-04-21 13:48:41 +02:00
packet_unpacker.go add tests for packet unpacker and fix a couple of bugs :) 2016-04-21 13:48:42 +02:00
packet_unpacker_test.go add tests for packet unpacker and fix a couple of bugs :) 2016-04-21 13:48:42 +02:00
public_header.go change public header to correctly state 48bit packet numbers 2016-04-21 17:02:15 +02:00
public_header_test.go change public header to correctly state 48bit packet numbers 2016-04-21 17:02:15 +02:00
quic_suite_test.go add public header parser 2016-04-06 23:10:52 +02:00
README.md add test commands to readme 2016-04-16 23:36:05 +02:00
server.go add some server tests 2016-04-21 13:48:42 +02:00
server_test.go enable server test 2016-04-21 17:03:29 +02:00
session.go re-add trivial ack handling to session, will be removed later 2016-04-21 17:02:45 +02:00
stream.go handle stream offset properly when receiving data 2016-04-19 23:23:21 +02:00
stream_test.go add more stream tests 2016-04-20 12:20:30 +02:00

A QUIC implementation in native Go

Build Status Godoc Reference

This is very much an incomplete, buggy, unperformant and insecure work in progress :)

Installing deps:

go get -t

Running the example server:

go run example/main.go

Using the quic_client from chromium:

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