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-03 10:27:59 +02:00
ackhandler fix typo in EntropyAccumulator function 2016-05-02 16:36:48 +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
docs add gopher-logo 2016-05-03 10:27:59 +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 implement BlockedFrame writing 2016-05-03 14:04:01 +07:00
handshake remove support for version 30, since we don't implement FEC at all 2016-05-02 20:56:02 +02:00
protocol remove support for version 30, since we don't implement FEC at all 2016-05-02 20:56:02 +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 don't send packets containing only a StopWaitingFrame 2016-05-03 14:40:45 +07:00
packet_packer_test.go don't send packets containing only a StopWaitingFrame 2016-05-03 14:40:45 +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 gopher-logo 2016-05-03 10:27:59 +02:00
server.go improve version negotiation log 2016-05-02 20:50:06 +02:00
server_test.go fix server test 2016-04-26 19:13:26 +02:00
session.go implement basic flow control 2016-05-03 12:07:01 +07:00
session_test.go implement basic flow control 2016-05-03 12:07:01 +07:00
stream.go implement basic flow control 2016-05-03 12:07:01 +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 implement basic flow control 2016-05-03 12:07:01 +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