Marten Seemann
|
bebff462c8
|
use a generic streams map for outgoing streams (#3488)
|
2022-08-11 05:14:52 -07:00 |
|
Marten Seemann
|
592fb9cad9
|
introduce a dedicated qerr.TransportError and qerr.ApplicationError
|
2021-05-01 09:38:48 +07:00 |
|
Marten Seemann
|
7cd4dea764
|
update the flow control windows of streams opened in 0-RTT
The server might have increased the initial flow control window. We need
to make sure to inform all streams opened during during the 0-RTT
period.
|
2021-03-12 15:09:50 +08:00 |
|
Marten Seemann
|
08f7cceea2
|
fix flaky streams map test on Windows
|
2021-01-20 11:45:06 +08:00 |
|
Marten Seemann
|
5c5e1024e7
|
send STREAMS_BLOCKED frame when MAX_STREAMS frame allows too few streams
|
2020-10-30 15:28:09 +07:00 |
|
Marten Seemann
|
5aa16eb1cf
|
add some randomized tests for the outgoing streams map
|
2020-10-26 09:55:23 +07:00 |
|
Marten Seemann
|
1aa35722a1
|
speed up the unit tests in the outgoing streams map
|
2020-10-26 09:55:23 +07:00 |
|
Marten Seemann
|
4b58bc0d07
|
make the stream deletion error message more specific
|
2019-11-08 11:09:54 +07:00 |
|
Marten Seemann
|
2b8cece60a
|
add a context to Session.Open{Uni}StreamSync
|
2019-06-22 19:37:21 +08:00 |
|
Marten Seemann
|
061b92ea5c
|
return OpenStreamSync calls in the order they were called
|
2019-06-06 17:43:38 +08:00 |
|
Marten Seemann
|
857e4ae9a9
|
use stream numbers, not stream ids, in the stream maps
|
2019-06-05 20:01:51 +08:00 |
|
Marten Seemann
|
9c09e84765
|
use IETF QUIC transport error codes
|
2019-03-06 13:43:18 +09:00 |
|
Marten Seemann
|
c03a8aaa97
|
don't wrap close errors in the streams map
A close error might for example be a timeout error. We want to preserve
the fact that it satisfies the net.Error interface and that Timeout() ==
true.
|
2019-03-02 17:58:18 +09:00 |
|
Marten Seemann
|
a2e48e204b
|
return a net.Error when opening streams
net.Error.Temporary() will be true if no stream can be opened when the
peer's stream limit is reached.
|
2019-01-06 17:18:43 +07:00 |
|
Marten Seemann
|
c37b698f68
|
Merge pull request #1596 from lucas-clemente/internalize-errors
internalize the qerr package
|
2018-11-12 15:54:39 +07:00 |
|
Marten Seemann
|
3ffea5d8c4
|
internalize the qerr package
|
2018-11-11 12:44:16 +07:00 |
|
Marten Seemann
|
dd9ce2e668
|
replace the STREAM_ID_BLOCKED with the STREAMS_BLOCKED frame
|
2018-11-10 09:38:57 +07:00 |
|
Marten Seemann
|
5fc2e12038
|
make the outgoing streams map work with stream 0
Stream 0 is now a valid stream ID used for application data, so the
streams map must be able to (block on) opening this stream.
|
2018-10-26 16:11:25 +07:00 |
|
Marten Seemann
|
f8d28a96fe
|
close all streams when closing the IETF QUIC streams map
|
2018-04-17 19:29:51 +09:00 |
|
Marten Seemann
|
1ec720f2f2
|
implement sending of STREAM_ID_BLOCKED frames
|
2018-02-06 10:04:40 +08:00 |
|
Marten Seemann
|
46e20ce8c9
|
implement handling of MAX_STREAM_ID frames
|
2018-02-06 08:30:58 +08:00 |
|
Marten Seemann
|
035799a326
|
implement a map for outgoing streams
|
2018-02-06 07:49:10 +08:00 |
|