Low-level access to the QUIC Initial Packet for mimicry purposes, hard fork of quic-go. https://quic.tlsfingerprint.io
Find a file
2016-05-06 13:29:30 +02:00
ackhandler keep bytesInFlight as protocol.ByteCount 2016-05-06 12:59:32 +02:00
congestion change congestion to use protocol.ByteCount 2016-05-05 01:41:34 +02:00
crypto move to chacha20poly1305 fork 2016-05-05 15:19:54 +02:00
docs add gopher-logo 2016-05-03 10:27:59 +02:00
errorcodes make session timeout according to ICSL 2016-05-05 23:16:49 +02:00
example add verbose flag to example server 2016-05-06 13:29:30 +02:00
frames use protocol.ByteCount in frames, streams and session 2016-05-05 11:53:10 +07:00
h2quic add tests for h2quic.responseWriter.Write 2016-05-04 17:11:38 +02:00
handshake only take specific values from the params map 2016-05-06 11:43:39 +02:00
protocol change congestion to use protocol.ByteCount 2016-05-05 01:41:34 +02:00
testdata replace certificate path with tls.Config instance throughout the server 2016-05-03 16:41:25 +02:00
utils add custom logger 2016-05-04 13:20:24 +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 add travis.yml 2016-04-07 17:10:20 +02:00
LICENSE add MIT license file 2016-05-02 11:24:13 +02:00
packet_number.go accept truncated packet numbers 2016-04-26 12:13:23 +02:00
packet_number_test.go accept truncated packet numbers 2016-04-26 12:13:23 +02:00
packet_packer.go add packetParse.Empty() 2016-05-04 15:22:57 +02:00
packet_packer_test.go add packetParse.Empty() 2016-05-04 15:22:57 +02:00
packet_unpacker.go implement PingFrame 2016-05-04 10:16:00 +07:00
packet_unpacker_test.go implement PingFrame 2016-05-04 10:16:00 +07:00
public_header.go update public header parsing to version 33 2016-05-05 00:54:29 +02:00
public_header_test.go update public header parsing to version 33 2016-05-05 00:54:29 +02:00
public_reset.go implement public reset packet writing 2016-04-29 16:12:17 +02:00
public_reset_test.go implement public reset packet writing 2016-04-29 16:12:17 +02:00
quic_suite_test.go add public header parser 2016-04-06 23:10:52 +02:00
README.md add gopher-logo 2016-05-03 10:27:59 +02:00
server.go update public header parsing to version 33 2016-05-05 00:54:29 +02:00
server_test.go update public header parsing to version 33 2016-05-05 00:54:29 +02:00
session.go keep bytesInFlight as protocol.ByteCount 2016-05-06 12:59:32 +02:00
session_test.go make session timeout according to ICSL 2016-05-05 23:16:49 +02:00
stream.go use protocol.ByteCount in frames, streams and session 2016-05-05 11:53:10 +07:00
stream_frame_queue.go implement a StreamFrame Queue to handle high priority StreamFrames for retransmission 2016-04-27 21:05:58 +07:00
stream_frame_queue_test.go implement a StreamFrame Queue to handle high priority StreamFrames for retransmission 2016-04-27 21:05:58 +07:00
stream_test.go use protocol.ByteCount in frames, streams and session 2016-05-05 11:53:10 +07:00
udp_conn.go remove udp references from session to simplify testing 2016-04-26 18:30:51 +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