Skip to content

Commit 865f4f2

Browse files
committed
webrtc/: Redefine RESET semantics
Instead of resetting both ends of a stream, RESET only resets the sending side of a stream. This is in line with the QUIC stream reset mechanism.
1 parent 027b539 commit 865f4f2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

webrtc/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,13 @@ package webrtc.pb;
286286
287287
message Message {
288288
enum Flag {
289-
// The sender will no longer send messages.
289+
// The sender will no longer send messages on the stream.
290290
FIN = 0;
291-
// The sender will no longer read messages. Incoming data is being
292-
// discarded on receipt.
291+
// The sender will no longer read messages on the stream. Incoming data is
292+
// being discarded on receipt.
293293
STOP_SENDING = 1;
294-
// The local endpoint abruptly terminates the stream. The remote endpoint
295-
// may discard any in-flight data.
294+
// The sender abruptly terminates the sending part of the stream. The
295+
// receiver can discard any data that it already received on that stream.
296296
RESET = 2;
297297
}
298298

0 commit comments

Comments
 (0)