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-24 20:28:37 +07:00
ackhandler OutgoingPacketAckHandler queues packets for retransmission 2016-04-24 20:28:37 +07:00
congestion implement prr sender 2016-04-24 13:27:01 +02: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 add WindowUpdate frame parsing 2016-04-22 19:52:33 +07:00
handshake fix randomness 2016-04-21 13:48:42 +02:00
protocol implement prr sender 2016-04-24 13:27:01 +02:00
utils continue hybrid slow start implementation 2016-04-24 12:39:40 +02: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 WindowUpdate frame parsing 2016-04-22 19:52:33 +07:00
packet_unpacker_test.go add WindowUpdate frame parsing 2016-04-22 19:52:33 +07: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 add WindowUpdate frame parsing 2016-04-22 19:52:33 +07:00
stream.go log stream closes 2016-04-21 21:38: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