diff --git a/index.bs b/index.bs index 0cee2e9e..528a95d5 100644 --- a/index.bs +++ b/index.bs @@ -1139,6 +1139,8 @@ dictionary WebTransportStats { unsigned long numIncomingStreamsCreated; unsigned long long bytesReceived; unsigned long long packetsReceived; + DOMHighResTimeStamp smoothedRtt; + DOMHighResTimeStamp rttVariation; DOMHighResTimeStamp minRtt; unsigned long numReceivedDatagramsDropped; }; @@ -1164,8 +1166,15 @@ The dictionary SHALL have the following attributes: : packetsReceived :: The number of total packets received on the QUIC connection, including packets that were not processable. +: smoothedRtt +:: The smoothed round-trip time (RTT) currently observed on the connection, as defined + in [[!RFC9002]] [Section 5.3](https://www.rfc-editor.org/rfc/rfc9002#section-5.3). +: rttVariation +:: The mean variation in round-trip time samples currently observed on the + connection, as defined in [[!RFC9002]] + [Section 5.3](https://www.rfc-editor.org/rfc/rfc9002#section-5.3). : minRtt -:: The minimum RTT observed on the entire connection. +:: The minimum round-trip time observed on the entire connection. : numReceivedDatagramsDropped :: The number of datagrams that were dropped, due to too many datagrams buffered between calls to {{DatagramTransport/datagrams}}' {{WebTransportDatagramDuplexStream/readable}}.