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-02 11:24:13 +02:00
ackhandler correctly treat LeastUnacked value in a StopWaitingFrame 2016-04-30 19:00:01 +07:00
congestion congestion interface cosmetics 2016-04-28 22:30:57 +02:00
crypto fix randomness 2016-04-21 13:48:42 +02:00
errorcodes improve error handling in session 2016-04-26 10:27:11 +02:00
example remove stray Printf 2016-05-02 15:34:15 +07:00
frames better debug output for retransmissions 2016-04-30 10:57:10 +07:00
handshake implement public reset packet writing 2016-04-29 16:12:17 +02:00
protocol implement another CubicSender test 2016-04-27 18:17:55 +02:00
utils implement more cubic sender tests 2016-04-28 12:03:55 +02:00
.editorconfig add editorconfig 2016-04-15 12:13:33 +02:00
.gitignore add gitignore 2016-04-29 12:04:34 +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 implement a StopWaitingManager 2016-04-29 16:58:30 +07:00
packet_packer_test.go implement a StopWaitingManager 2016-04-29 16:58:30 +07:00
packet_unpacker.go implement public reset sending in session 2016-04-29 16:50:09 +02:00
packet_unpacker_test.go use time.Duration as delay time type in ackframe 2016-04-29 12:18:35 +02:00
public_header.go refactor session to support very basic packet pacing 2016-04-25 14:59:26 +02:00
public_header_test.go change public header to correctly state 48bit packet numbers 2016-04-21 17:02:15 +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 test commands to readme 2016-04-16 23:36:05 +02:00
server.go use certPath and keyPath variables when setting up the server 2016-04-28 17:41:21 +07:00
server_test.go fix server test 2016-04-26 19:13:26 +02:00
session.go include StreamFrames in debug output 2016-04-30 14:23:31 +07:00
session_test.go close session when receiving a ConnectionCloseFrame 2016-04-30 10:04:45 +07:00
stream.go remove some debug messages 2016-04-27 12:52:06 +02: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 handle control frames and Stream frames separately in PacketPacker 2016-04-26 23:30:43 +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