Marten Seemann
3e9c8317db
close the h2quic.RoundTripper in the example client
...
While it's not necessary, it's best practice to close the RoundTripper.
That way, QUIC can do a proper connection shutdown.
2017-12-30 13:45:11 +07:00
Lucas Clemente
3bb2687bbf
Update certs
2017-12-19 22:17:08 +01:00
Marten Seemann
66f425f10e
add a -tls flag to the example client and server
...
This will add the WIP TLS version as the preferred supported version. It
is intended for developing and testing of IETF QUIC.
2017-12-05 11:00:51 +07:00
Lucas Clemente
a4073bffd3
Update certs
2017-09-28 08:56:31 +02:00
Marten Seemann
a851aaacda
remove the tls.Config from the quic.Config
...
The tls.Config now is a separate parameter to all Listen and Dial
functions in the quic package.
2017-07-03 22:12:09 +02:00
Lucas Clemente
65dc8f139f
Update certs
2017-07-03 21:58:47 +02:00
Marten Seemann
9df3380bc6
rename the h2quic.QuicRoundTripper to h2quic.RoundTripper
2017-06-26 19:14:41 +02:00
Marten Seemann
c0b09c8646
make utils an internal package
2017-06-09 22:28:40 +02:00
Marten Seemann
7e256e0ebe
log timestamps
2017-05-16 12:19:36 +08:00
Marten Seemann
30a0211243
implement a Listener.Accept() method
2017-05-15 20:37:29 +08:00
Lucas Clemente
8cd1deba54
Add an echo example
...
Fixes #557 .
2017-04-24 15:57:22 +02:00
Lucas Clemente
013d7fdb30
Simplify code in a few places
...
Found by running `gosimple ./...`
2017-04-13 16:43:58 +02:00
Lucas Clemente
fb5cccf799
Update expired certificate
2017-04-03 09:49:28 +02:00
Marten Seemann
cc97a2fba4
print request body in example client
2017-01-14 18:58:47 +07:00
Marten Seemann
6ece13f9ab
add a better example client
2017-01-14 18:58:44 +07:00
Marten Seemann
08c267431b
implement closing the quic client with an error
2017-01-14 18:58:43 +07:00
Marten Seemann
a7afd72795
add a callback that is called when the crypto level changes
2017-01-14 18:54:18 +07:00
Marten Seemann
dc05de3312
add a callback to client that is called after the version is negotiated
2017-01-14 18:54:18 +07:00
Marten Seemann
7fa93c56af
implement a proper Close method for the Client
2017-01-14 18:52:20 +07:00
Marten Seemann
de168addd5
don’t panic after sending a ConnectionClose
2017-01-14 18:52:20 +07:00
Marten Seemann
014315d3c7
parse hostname from address and pass it to the client cryptoSetup
2017-01-14 18:52:19 +07:00
Marten Seemann
afa71d52f1
create Client in main package
2017-01-14 18:45:15 +07:00
Marten Seemann
6189df2d37
move client to subdirectory in example package
2017-01-14 18:45:15 +07:00
Marten Seemann
316350ce24
send inchoate CHLO
2017-01-14 18:45:14 +07:00
Marten Seemann
7e4c695faf
send (empty) QUIC packet to server
2017-01-14 18:45:14 +07:00
Marten Seemann
fe9da30cb2
update certificate for tests
2017-01-03 10:07:36 +07:00
Carlos Martín Nieto
327856e31c
Don't rely on GOPATH to load the certificates or error codes
...
GOPATH is a list of paths, similar to PATH. If someone does have a list
set, the tests will try to use the full list as a path prefix to load
the certificates, which won't work.
But even handling GOPATH as a list does not solve the issue of what
certificate or error_codes.go file to load, since the code might not be
under the first one it finds.
Instead, use the runtime functionality to get the filename of the path
of the project at compilation time and perform the lookups relative to
that, which guarantees that we're loading the files from the path of the
code that is running.
2016-12-02 13:52:12 +01:00
Lucas Clemente
29c3259e42
add (disabled) profiling instrumentation to example server
2016-10-13 09:13:32 +01:00
Lucas Clemente
e81425dc71
add a -tcp flag to the example server that activates parallel TCP
2016-10-09 10:24:48 +02:00
Lucas Clemente
06f09e9a1e
update cert for tests
2016-10-02 15:22:31 +02:00
Marten Seemann
c2af049b8a
add an upload handler to the demo server
2016-08-20 22:20:43 +07:00
Lucas Clemente
4750924b27
improve tiles demo and remove an empty file
2016-07-08 18:21:46 +02:00
Lucas Clemente
9336245ddd
add a readme to example/ explaining the certificate
2016-07-05 12:30:08 +02:00
Lucas Clemente
d0efb894ef
update certificate for tests
2016-07-05 12:24:54 +02:00
Lucas Clemente
3d4ca214f7
remove DER certificates and use PEMs instead
2016-07-05 12:23:51 +02:00
Lucas Clemente
d7937f8774
add tiles to example server and move /echo into /demo scope
2016-06-07 09:16:53 +02:00
Lucas Clemente
cdff2e5531
add more tests for h2quic.Server
...
ref #160
2016-06-02 21:11:11 +02:00
Lucas Clemente
bf3d89c795
improve public quic and h2 APIs, embedding http.Server in h2quic.Server
...
ref #124
2016-05-30 14:19:25 +02:00
Lucas Clemente
8e66aaf38d
allow multiple bind parameters in example server
...
fixes #103
2016-05-24 13:01:57 +02:00
Lucas Clemente
d77120a921
add some useful options to example server (commented out)
2016-05-20 13:09:44 +02:00
Lucas Clemente
d148943bc8
add pprof support to example server
2016-05-19 14:28:37 +02:00
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
8cdf832aa0
add support for sending intermediate certificate
...
fixes #76
2016-05-11 12:23:09 +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
d608a232e6
add very simple dockerfile for example server
2016-04-29 12:04:34 +02:00