Commit graph

51 commits

Author SHA1 Message Date
Lucas Clemente
de660dbfc5 run gofmt -s on main and server config 2016-05-15 14:42:56 +02:00
Lucas Clemente
d1272650c3 add support for http client uploads
fixes #27
2016-05-13 13:01:45 +02:00
Lucas Clemente
3cfc9b66a8 add verbose flag to example server 2016-05-06 13:29:30 +02:00
Lucas Clemente
09fb894fb2 add custom logger
fixes #45
2016-05-04 13:20:24 +02:00
Lucas Clemente
c068cbcb8f replace certificate path with tls.Config instance throughout the server
The example server now reads the certificate and key data itself. Tests
use the new testdata package, where the sample key & cert are stored.

Fixes #24
2016-05-03 16:41:25 +02:00
Lucas Clemente
e3a4d75fc1 move h2 server stuff from main to h2quic package 2016-05-03 14:26:50 +02:00
Marten Seemann
969a0dc66f remove stray Printf
closes #36
2016-05-02 15:34:15 +07:00
Lucas Clemente
88a82be2fa fix http2 error handling 2016-04-29 11:53:15 +02:00
Lucas Clemente
5dddd9303f implement proper http request header handling
fixes #26
2016-04-29 11:49:46 +02:00
Lucas Clemente
a079b3e662 add -www option to example server 2016-04-28 17:00:58 +02:00
Lucas Clemente
8dea856cad fix flag parsing in example server 2016-04-28 16:37:49 +02:00
Marten Seemann
0a4f0e201a add command line option for certificate path 2016-04-28 18:43:59 +07:00
Marten Seemann
153ff598d9 add command line option which address to bind to 2016-04-28 16:24:43 +07:00
Lucas Clemente
23a1e08e90 make stream private 2016-04-25 17:54:00 +02:00
Lucas Clemente
fbb89f5467 fix content-length handling and multiple writes in http2 responsewriter 2016-04-19 14:35:02 +02:00
Lucas Clemente
7ac043dab7 increase hpack window size to chrome default value 2016-04-19 13:55:49 +02:00
Lucas Clemente
999b4e7b0a only write response header once 2016-04-19 13:55:31 +02:00
Lucas Clemente
9076990cd7 don't use the h2framer's built-in header decoding, it errors with chrome 2016-04-19 12:09:31 +02:00
Lucas Clemente
d6501dc34c only open streams if we have a response body, fixes problems with 404s 2016-04-19 12:02:31 +02:00
Lucas Clemente
e0f5deedd5 add very basic http handling using the stlib to example server 2016-04-18 21:08:47 +02:00
Lucas Clemente
5b59c2c2b0 serve multiple http requests per connection 2016-04-18 14:54:02 +02:00
Lucas Clemente
e9967e990a use streams in example server 2016-04-18 14:09:29 +02:00
Lucas Clemente
07e7708506 change StreamCallback to include the session 2016-04-18 14:01:35 +02:00
Marten Seemann
3eabb4a46c use Stream object in the Session 2016-04-17 00:19:23 +07:00
Marten Seemann
66b52e915d introduce StreamID type 2016-04-16 23:54:57 +07:00
Marten Seemann
79ba43bbdb move all frames to separate package 2016-04-16 18:34:16 +07:00
Lucas Clemente
be33164dbf reduce debug logs 2016-04-15 22:43:46 +02:00
Lucas Clemente
c3a5b846cb pull some stuff from main.go into server.go 2016-04-15 22:40:53 +02:00
Lucas Clemente
20b48c5432 move handshake handling and server config into handshake package 2016-04-15 22:24:42 +02:00
Lucas Clemente
495bb0ef92 handle version Q030 properly 2016-04-15 19:01:14 +02:00
Lucas Clemente
b6c9c9b6a4 introduce protocol/version.go and remove big endian functions 2016-04-15 18:46:39 +02:00
Lucas Clemente
052822aea5 send a body in the example server 2016-04-15 16:49:24 +02:00
Lucas Clemente
3c16e8c9ee introduce stream callback in session, move http2 stuff to main.go 2016-04-15 14:31:31 +02:00
Lucas Clemente
388fdf7399 decrease debug output 2016-04-14 20:40:20 +02:00
Lucas Clemente
70531832af don't panic! 🎉 2016-04-14 20:04:04 +02:00
Lucas Clemente
04921c29af introduce ConnectionID type 2016-04-14 19:39:49 +02:00
Lucas Clemente
09879ed4f7 move stuff from example server to new Session and SessionConfig classes 2016-04-14 17:56:31 +02:00
Lucas Clemente
8b7e2744da implement AES-GCM as AEAD 2016-04-14 09:56:43 +02:00
Marten Seemann
55c6a51b45 send Version Negotiation Packet if the client uses the wrong QUIC version 2016-04-14 14:29:25 +07:00
Marten Seemann
703aad12c0 make WritePublicHeader set the VersionFlag and the ResetFlag 2016-04-14 14:28:16 +07:00
Marten Seemann
e8fc95466d fix QuicVersion32, enforce exact QuicVersion 2016-04-13 14:39:59 +07:00
Lucas Clemente
d5edeaf5c4 clean up example server debug output 2016-04-12 17:28:49 +02:00
Lucas Clemente
59ed21e690 add entropy accumulation 2016-04-12 17:03:24 +02:00
Lucas Clemente
284b86c02c send proper kex value in example server 2016-04-12 15:29:26 +02:00
Lucas Clemente
aa786a1af1 read certificate path from $GOPATH in example server 2016-04-12 14:10:52 +02:00
Lucas Clemente
95e1b87302 add certificate handling to example server 2016-04-12 12:18:01 +02:00
Lucas Clemente
1e33917574 improve version check in example server 2016-04-12 12:17:29 +02:00
Lucas Clemente
f293b525da add mock reply packet to example server 2016-04-10 20:33:46 +02:00
Lucas Clemente
9cb328ef8b implement sample server REJ message in example server 2016-04-10 18:40:09 +02:00
Lucas Clemente
0d4ebe0cfe update example program 2016-04-08 19:34:15 +02:00