Commit graph

89 commits

Author SHA1 Message Date
Gaukas Wang
95575f5fe7
break: update repo url [ci skip]
uTLS is not yet bumped to the new version, so this commit breaks the dependencies relationship by getting rid of the local replace.
2023-08-03 18:58:52 -06:00
Marten Seemann
07ad2cbee2 remove Tracer from Config, put ConnectionTracer constructor there 2023-05-02 15:56:49 +02:00
Marten Seemann
58cedf7a4f
rename module, adjust import paths to quic-go/quic-go (#3680) 2023-01-21 19:53:57 -08:00
Marten Seemann
498475fa60
update golangci-lint action to v3, golangci-lint to v1.48.0 (#3499)
* run gofmt -s -w

* stop using the deprecated io/ioutil package

* update golangci-lint action to v3, golangci-lint to v1.48.0
2022-08-10 09:50:48 -07:00
Ivan Trubach
0ec8ee3cff
do not embed http.Server in http3.Server (#3397)
This change removes the embedded http.Server struct from http3.Server.
It slightly changes some error behavior, in particular, it mandates
TLSConfig for methods that create QUIC listeners.

Before this change, only Addr, TLSConfig, Handler and MaxHeaderBytes
options were used from the http.Server. These are now defined directly
in http3.Server with an improved documentation.
2022-05-20 02:53:23 -07:00
市川恭佑 (ebi)
f767474977
Remove a redundant error checking condition 2021-06-24 17:20:14 +09:00
Marten Seemann
02b700804f remove support for quic-trace 2020-12-05 23:13:45 +07:00
Marten Seemann
eb53fdfdb3 fix setting of http.Handler in the example server 2020-11-23 11:08:26 +07:00
Marten Seemann
ee24d3899e simplify the Tracer interface by combining the TracerFor... methods 2020-07-11 13:22:52 +07:00
Marten Seemann
ac606222e0 replace the GetLogWriter quic.Config option by a Tracer interface 2020-07-01 16:57:03 +07:00
Marten Seemann
3e8c3cafc1 make the buffered qlog writer used in interop flush before closing 2020-03-19 12:58:56 +07:00
Marten Seemann
86e9ab8f20 use buffered qlog writers in example client and server, and interop 2020-03-18 12:34:14 +07:00
Marten Seemann
b1a3e7a00b add a -qlog flag to the example client and server 2020-02-12 10:42:38 +07:00
Marten Seemann
2ba4617463 use log.Fatal() instead of panic() in example client and server 2020-01-08 15:15:52 +07:00
Marten Seemann
07dcbc8496 remove the testserver package 2019-11-25 12:54:58 +07:00
Marten Seemann
84c6a60771 make example server conform with the GET /xxx format used for interop 2019-08-02 11:27:32 +07:00
Marten Seemann
58ef419869 fix the /dynamic endpoint on the example server 2019-07-13 17:46:36 +07:00
Marten Seemann
73f83ca4bb add a tracing option to the example server 2019-06-20 22:58:01 +08:00
Marten Seemann
3e9ffe9e28 add an HTTP endpoint to output arbitrary length data to example server 2019-05-21 15:38:50 +01:00
Marten Seemann
4f6d0e651a implement HTTP/3 2019-04-11 09:06:10 +09:00
Marten Seemann
f6357dc858 use the self-signed certificate for the example server and client 2018-12-13 14:42:25 +06:30
Marten Seemann
3266e36811 drop support for gQUIC 2018-10-30 10:20:39 +07:00
Marten Seemann
948eef3e42 create a logger interface and use it everywhere 2018-04-04 13:03:28 +07: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
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
Lucas Clemente
013d7fdb30 Simplify code in a few places
Found by running `gosimple ./...`
2017-04-13 16:43:58 +02: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
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
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
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
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