uquic/http3
Artem Mikheev b7e93b54c9
Implement http3.Server.ServeListener (#3349)
* feat(http3): implement serving from quic.Listener

ServeListener method added to http3.Server allowing serving from an existing listener
ConfigureTLSConfig function added to http3 which should be used to create listeners meant for serving http3.

* docs(http3): add note about using ConfigureTLSConfig to ServeListener

* fix(http3): stop serving non-created listeners after Server.Close

* refactor(http3): return ErrServerClosed once server closes instead of context.Canceled

* feat(http3): close listeners from ServeListener as well

* fix(http3): fix logger not being setup during ServeListener

* test(http3): add unit tests for serving listeners

* test(http3): add tests for ConfigureTLSConfig

* test(http3): added server hotswapping integration test

* fix: race condition in listener tests
2022-03-21 02:20:29 -07:00
..
body.go introduce a quic.StreamError type and use it for stream cancelations 2021-05-01 09:39:52 +07:00
body_test.go introduce a quic.StreamError type and use it for stream cancelations 2021-05-01 09:39:52 +07:00
client.go quicvarint: add Reader and Writer interfaces (#3233) 2021-08-05 10:49:17 -07:00
client_test.go drop support for QUIC draft version 32 and 34 2021-07-06 09:50:10 -07:00
error_codes.go expose the TransportError and the ApplicationError 2021-05-01 09:38:49 +07:00
error_codes_test.go update HTTP/3 errors 2019-09-04 12:06:17 +07:00
frames.go quicvarint: add Reader and Writer interfaces (#3233) 2021-08-05 10:49:17 -07:00
frames_test.go rename ReadVarint / WriteVarInt / VarIntLen to Read / Write / Len 2021-01-02 00:15:07 +08:00
gzip_reader.go add support for gzipped HTTP/3 requests 2019-04-16 17:26:03 +09:00
http3_suite_test.go accept the control stream and parse SETTINGS frame, for the H3 server 2020-12-23 14:47:14 +07:00
request.go add support for the HTTP CONNECT method (#2761) 2020-09-10 18:05:55 +07:00
request_test.go add support for the HTTP CONNECT method (#2761) 2020-09-10 18:05:55 +07:00
request_writer.go introduce a quic.StreamError type and use it for stream cancelations 2021-05-01 09:39:52 +07:00
request_writer_test.go fix HTTP request writing if the Request.Body reads data and returns EOF 2020-07-01 15:31:24 +07:00
response_writer.go allow sending 1xx responses (#3047) 2021-03-05 10:03:31 +08:00
response_writer_test.go allow sending 1xx responses (#3047) 2021-03-05 10:03:31 +08:00
roundtrip.go Update doc for dialer in http3.RoundTripper 2021-06-20 08:47:18 -06:00
roundtrip_test.go expose the TransportError and the ApplicationError 2021-05-01 09:38:49 +07:00
server.go Implement http3.Server.ServeListener (#3349) 2022-03-21 02:20:29 -07:00
server_test.go Implement http3.Server.ServeListener (#3349) 2022-03-21 02:20:29 -07:00