Marten Seemann
b5615db612
complete a stream that has frames in flight if it is canceled
2021-01-17 15:54:33 +08:00
Marten Seemann
838dd6e81a
rename StreamFrame.FinBit to Fin
2020-07-02 16:41:43 +07:00
Marten Seemann
865332015c
rename ResetStreamFrame.ByteOffset to FinalSize
2020-07-02 16:41:43 +07:00
Marten Seemann
cc340b2887
rename StreamDataBlockedFrame.DataLimit to MaximumStreamData
2020-07-02 16:41:43 +07:00
Marten Seemann
5466de6565
rename MaxStreamDataFrame.ByteOffset to MaximumStreamData
2020-07-02 16:41:43 +07:00
Marten Seemann
4ff3af3305
gracefully handle concurrent stream writes and cancellations
...
If the complete slice passed to Stream.Write() is sent out, and the
stream is canceled concurrently (either by calling Stream.CancelWrite()
or by receiving a STOP_SENDING frame), we don't need to return an error
for the Write() call.
2020-06-23 13:07:28 +07:00
Marten Seemann
1cd1c3f54d
Merge pull request #2538 from lucas-clemente/bundle-small-writes
...
bundle small writes on streams
2020-05-14 11:51:34 +07:00
Marten Seemann
84f7a9dfdd
bundle small writes on streams
2020-05-12 12:36:32 +07:00
Marten Seemann
d1c6d808b0
add a send stream test that randomly acknowledges and loses data
2020-05-11 10:05:39 +07:00
Marten Seemann
9905774c40
make it more likely that a STREAM frame is bundled with the FIN
2020-05-01 10:07:31 +07:00
Marten Seemann
7b1c4e7d80
don't dequeue retransmitted STREAM frames after the stream was canceled
2020-04-17 10:06:42 +07:00
Marten Seemann
599d937966
make Stream.Close() a no-op after the stream was closed for shutdown
2020-03-25 16:48:32 +07:00
Marten Seemann
6b22f36d82
add the stylecheck linter
2019-09-17 13:50:19 +07:00
Marten Seemann
4cb8bf3101
put STREAM frames back into the pool when they are acknowledged
2019-09-07 16:31:52 +07:00
Marten Seemann
4cfbb2f134
use STREAM frames from the buffer for sending data
2019-09-07 16:31:52 +07:00
Marten Seemann
94ab4e8d24
cancel retransmissions for streams that were reset
2019-08-31 17:37:20 +07:00
Marten Seemann
f49451ce3c
queue lost STREAM frames in the stream's retransmission queue
2019-08-31 17:36:16 +07:00
Marten Seemann
0edb3f2b93
return ackhandler.Frames from sendStream.popStreamFrame
2019-08-31 17:34:54 +07:00
Marten Seemann
93d5d15e3b
implement a STREAM frame retransmission queue in the sendStream
2019-08-31 17:34:54 +07:00
Marten Seemann
2836442a65
copy error code from the STOP_SENDING frame to the RESET_STREAM frame
2019-08-31 12:51:02 +07:00
Marten Seemann
3372fa794c
remove the error return value from Stream.CancelWrite
2019-01-24 16:00:12 +07:00
Marten Seemann
3808191679
make CancelWrite a no-op when called after closing the stream
2019-01-24 16:00:08 +07:00
Marten Seemann
8d73ebc5af
don't send more stream data after a stream was canceled
2019-01-23 12:47:17 +07:00
Marten Seemann
0be8e033ab
fix race conditions when setting read and write deadlines
2018-12-20 14:43:11 +06:30
Marten Seemann
466825eeb2
only copy stream data to write when popping a STREAM frame
...
stream.Write can be called with arbitrarily large slices of data. We
should avoid copying all that data up front since this can take a long
time. Instead, we can copy the data that is dequeued when a STREAM frame
is popped.
2018-12-18 14:35:48 +06:30
Marten Seemann
05ecf9bc02
rename the STREAM_BLOCKED frame to STREAM_DATA_BLOCKED
2018-11-10 09:05:27 +07:00
Marten Seemann
022189dfda
rename the RST_STREAM frame to RESET_STREAM frame
2018-11-04 12:26:02 +07:00
Marten Seemann
e0a7b50edf
use a time.Timer for write deadlines
2018-10-20 10:12:03 +09:00
Marten Seemann
50397a979c
only send BLOCKED frames if there is more data to send
2018-07-30 05:06:11 +07:00
Marten Seemann
37aa577560
run ineffassign in gometalinter
2018-02-23 22:39:08 +08:00
Marten Seemann
8a3f807a12
immediately delete a stream when it is completed
...
By introducing a callback to the stream, which the stream calls as soon
as it is completed, we can get rid of checking every single open stream
if it is completed.
2018-01-03 10:30:20 +07:00
Marten Seemann
f2a1206c20
fix flaky send stream test
2018-01-03 09:32:09 +07:00
Marten Seemann
0311bff1f2
improve the send stream tests
2018-01-03 08:46:46 +07:00
Marten Seemann
5371f804f8
don't report blocked streams as active for sending data
2018-01-03 00:18:33 +07:00
Marten Seemann
d9c107b034
introduce a queue of active streams in the streamFramer
...
The queue holds all streams that have data to send. When stream.Write or
stream.Close are called, a stream is added to this queue. It is removed
from the queue when all available (at that moment) data was sent.
This way, we don't need the round robin scheduling (which, for every
packet sent, asked every single open stream if it had data) any more.
2018-01-02 23:24:44 +07:00
Marten Seemann
a5d3eaea61
rename the scheduleSending callback to onHasStreamData in the stream
...
This callback also takes the stream ID, which will later be used to
create a queue of streams that have data for writing available.
2018-01-02 23:24:44 +07:00
Marten Seemann
0d6032a065
call the scheduleSending callback when stream.Close is called
...
The stream needs to send the STREAM frame containing the FIN bit.
2017-12-21 21:10:17 +07:00
Marten Seemann
fc8fafd15e
pass a callback containing the callbacks to the stream
2017-12-20 11:49:05 +07:00
Marten Seemann
ea77974027
don't send data that was queue before the stream write deadline expired
2017-12-20 11:18:36 +07:00
Marten Seemann
d4b80bd8d0
don't schedule sending when stream.Write is called after the deadline
2017-12-20 10:59:09 +07:00
Marten Seemann
d2e31c04ab
generate the streamI mock in the quic package
...
By doing so, we can mock private methods of the stream, so they cannot
be type-asserted by users of quic-go.
2017-12-20 10:42:07 +07:00
Marten Seemann
092908d3e0
simplify sending of (connection-level) BLOCKED frames
2017-12-20 10:23:17 +07:00
Marten Seemann
d49ad2d0cc
queue STREAM_BLOCKED frames from the stream, when popping a STREAM frame
2017-12-20 10:23:01 +07:00
Marten Seemann
e926b0805a
split the stream into a receive and a send stream
2017-12-20 10:05:02 +07:00