Marten Seemann
59ed51704a
README: add RoadRunner to list of projects ( #4226 )
2024-01-02 21:32:58 -08:00
Marten Seemann
1083d1fb8f
handshake: remove unneeded mutex in cryptoSetup ( #4227 )
2024-01-01 23:52:08 -08:00
Marten Seemann
22b7f7744e
use a ring buffer for the datagram queue ( #4223 )
2023-12-31 20:50:26 -08:00
Marten Seemann
1fce81f8bb
queue up to 32 DATAGRAM frames to send ( #4222 )
2023-12-31 19:58:41 -08:00
Marten Seemann
7f080dd54b
discard DATAGRAM frames that don't fit into packets without an ACK ( #4221 )
...
If the packet doesn't contain an ACK (i.e. the payload is empty),
there's no point retrying to pack it later. It's extremely unlikely that
the available packet size will suddenly increase.
2023-12-31 19:17:25 -08:00
Marten Seemann
d6e3f3229f
qtls: remove unneeded type alias for the tls.QUICEncryptionLevel ( #4220 )
...
* qtls: remove unneeded type alias for the tls.QUICEncryptionLevel
* handshake: make cryptoSetup.WriteRecord private
2023-12-28 18:59:56 -08:00
Vladimir Varankin
a937959fbf
http3: fix channel size in ListenAndServe ( #4219 )
...
* http3: typo in ListenAndServe docs
Also, partially prevent a goroutine leak on an error from one of the
listeners.
* http3: improve documentation for ListenAndServe
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-12-28 18:35:46 -08:00
Marten Seemann
22411e16d5
utils: switch to standard library min and max functions ( #4218 )
...
These functions were added in Go 1.21.
2023-12-27 21:19:13 -08:00
Marten Seemann
18c591c75a
utils: use time.Duration.Abs ( #4217 )
...
This function was added in Go 1.19, and covers some corner cases that
our custom implementation didn't.
2023-12-27 20:49:47 -08:00
Marten Seemann
d795250479
drop support for Go 1.20, build on Go 1.22rc1 on CI ( #4195 )
...
* drop support for Go 1.20
* ci: udpate CircleCI to Go 1.21
* qtls: remove unnecessary type aliases
* ci: build using Go 1.22rc1
2023-12-27 20:31:58 -08:00
Benedikt Spies
31a677cacd
qlog: add support for alpn_information event ( #4216 )
...
* qlog chosen alpn
* qlog chosen alpn
* qlog: fix capitalization of ALPN
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-12-25 21:02:47 -08:00
Marten Seemann
2243fdefbf
http3: return the context cancellation error from RoundTrip ( #4203 )
2023-12-20 20:16:30 -08:00
dependabot[bot]
1c8dd085f9
build(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 ( #20 )
...
Bumps [golang.org/x/crypto](https://github.com/golang/crypto ) from 0.14.0 to 0.17.0.
- [Commits](https://github.com/golang/crypto/compare/v0.14.0...v0.17.0 )
---
updated-dependencies:
- dependency-name: golang.org/x/crypto
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-12-19 10:15:01 -07:00
Constantine Shablia
d3c5f389d4
http3: improve debug message when determining the listener port fails ( #4214 )
...
Fixes : #4212
2023-12-18 21:03:28 -08:00
Constantine Shablia
5d6bf7e206
http3: don't use error string as a format string in debug log message ( #4211 )
...
Fixes : #4209
2023-12-18 19:27:07 -08:00
WeidiDeng
e0bf13be01
http3: reset stream when a handler panics ( #4181 )
...
* interrupt the stream when a panick happened
* move the declaration of errPanicked
* check what's read is a prefix of what's written
* check errPanicked
* use MatchError instead of Equal
* use channel to notify the response has been received
2023-12-15 19:39:49 -08:00
Dominik Roos
06c6a8449b
http3: add remote address to request context ( #4208 )
...
* http3: add remote address to request context
Add the remote address of the underlying packet connection to the
HTTP request context. This is useful for applications that need access
to the actual remote address (wrapped in a net.Addr) rather than just
its string representation.
Fixes #4198
* add an integration test to the self test suite.
I was not sure how deep we want to go to assure the right value is set.
For now, it asserts that a net.Addr is present in the context.
Due to the dynamic nature of the requests, it is a bit harder to know
exactly how the remote address will look like. IPv4 vs IPv6, random high
port. I think it is fine to only assert that the value is present.
2023-12-15 19:29:41 -08:00
Marten Seemann
6ffb9054a2
fuzzing: add frame validation logic ( #4206 )
2023-12-13 23:09:02 -08:00
Marten Seemann
048940927c
ci: update golangci-lint to v1.55.2 ( #4204 )
2023-12-13 04:02:06 -08:00
Marten Seemann
ff6d575ee3
don't retransmit PATH_CHALLENGE and PATH_RESPONSE frames ( #4200 )
2023-12-12 20:22:13 -08:00
Marten Seemann
574dc84c0c
limit the number of queued PATH_RESPONSE frames to 256 ( #4199 )
2023-12-12 20:17:09 -08:00
Marten Seemann
a7a66f6437
integrationtests: remove leftover code for Go 1.19 ( #4193 )
2023-12-10 03:00:26 -08:00
Marten Seemann
659da8ca08
fuzzing: update Go version used on OSS-Fuzz to 1.21 ( #4192 )
2023-12-09 09:20:09 -08:00
fengyun.rui
f162b948db
examples: close listener, connection and stream in echo client and server ( #4188 )
...
* fix: add close func in example
Signed-off-by: rfyiamcool <rfyiamcool@163.com>
* fix: add close func in example
Signed-off-by: rfyiamcool <rfyiamcool@163.com>
* fix: add close func in example
Signed-off-by: rfyiamcool <rfyiamcool@163.com>
---------
Signed-off-by: rfyiamcool <rfyiamcool@163.com>
2023-12-09 09:05:31 -08:00
Marten Seemann
d234d62d52
qtls: only attempt 0-RTT resumption for 0-RTT enabled session tickets ( #4183 )
2023-12-09 06:17:47 -08:00
Charles Xu
38eafe4ad8
README: add gost project ( #4154 )
...
* chore: add project
* fix name
* revert unrelated whitespace fix
---------
Co-authored-by: Marten Seemann <martenseemann@gmail.com>
2023-12-06 19:18:33 -08:00
Marten Seemann
9b40c50a73
http3: use the AdditionalSettings for requests ( #4156 )
2023-12-06 06:22:23 -08:00
Benedikt Spies
45922f76d6
reduce calls to time.Now() calls in connection ( #4191 )
2023-12-06 06:00:58 -08:00
Marten Seemann
87ef8ec48d
fuzzing: add transport parameter validation logic ( #4175 )
2023-12-03 05:53:36 -08:00
chungthuang
7b9d21fbe6
send large max_datagram_frame size, introduce a DatagramTooLargeError error ( #4143 )
...
The size can be overwritten to a lower value for testing.
2023-12-02 06:27:15 -08:00
Marten Seemann
2d7ea37672
wire: reject NEW_CONNECTION_ID frames with zero-length conneciton IDs ( #4180 )
2023-11-23 02:41:12 -08:00
Marten Seemann
771d136fa9
interop: update Go version to 1.21.4 ( #4179 )
2023-11-22 20:30:26 -08:00
Marten Seemann
3bf2e19d0d
logging: pass the packet number to ConnectionTracer.DroppedPacket ( #4171 )
...
In most cases the packet number is not known when a packet is dropped,
but it's useful to log the packet number when dropping a duplicate
packet.
2023-11-17 04:11:16 -08:00
Marten Seemann
96ab48eb7d
fix serialization of connection ID in filenames of qlog files ( #4170 )
2023-11-16 22:06:42 -08:00
Marten Seemann
427f53328b
fix flaky server test ( #4167 )
2023-11-14 02:00:42 -08:00
Anders Pitman
740119b144
README: fix typo ( #4166 )
2023-11-14 01:09:47 -08:00
Gaukas Wang
a14017fc59
fix: link to quic-go in README.md ( #19 )
...
Fix unintended changes that break links to the upstream.
2023-11-13 19:55:57 -07:00
Marten Seemann
9414ea4910
ackhandler: immediately acknowledge ECN-CE marked packets ( #4147 )
...
* ackhandler: immediately acknowledge ECN-CE marked packets
* shorter debug statements
2023-11-03 08:28:16 -07:00
Marten Seemann
d4ab27de1f
don't set the TLS version in the transport ( #4135 )
...
This is already done in the crypto setup.
2023-10-31 22:27:13 -07:00
Marten Seemann
f23da7da47
congestion: don't use floating point math when calculating pacing times ( #4148 )
2023-10-31 02:21:42 -07:00
Marten Seemann
a3603549ee
document what happens to established connections on Listener.Close ( #4138 )
2023-10-27 23:40:50 -07:00
Marten Seemann
6eb0caca1a
fix race condition in multiplex integration test ( #4136 )
2023-10-27 22:08:49 -07:00
Marten Seemann
5311f8178c
README: link to webtransport-go repo ( #4117 )
2023-10-27 02:21:26 -07:00
Marten Seemann
dda63b90eb
don't close established connections on Listener.Close, when using a Transport ( #4072 )
...
* don't close established connections on Listener.Close
* only close once
2023-10-26 23:10:13 -07:00
Gaukas Wang
e3be11b1e8
upstream: sync to quic-go v0.39.1
...
sync to upstream quic-go v0.39.1
2023-10-26 23:56:31 -06:00
Marten Seemann
ef800d6f71
handshake: set MinVersion on the Config returned by GetConfigForClient ( #4134 )
2023-10-26 22:35:07 -07:00
Gaukas Wang
92311cd441
fix: go 1.20 failing test
2023-10-26 23:26:51 -06:00
Marten Seemann
d309060cde
handshake: clone the tls.Config returned by GetConfigForClient ( #4133 )
...
We modify this tls.Config, so we should clone it first. Otherwise, this could
cause conflicts with how the application is using that config.
2023-10-26 22:22:20 -07:00
Gaukas Wang
77691ccce8
fix: error after sync
2023-10-26 22:48:59 -06:00
Gaukas Wang
7c77243b04
upstream: sync to 0.39.1
2023-10-26 22:47:22 -06:00