Quic Timestamps For Measuring One-Way Delays
draft-huitema-quic-ts-04
Network Working Group C. Huitema
Internet-Draft Private Octopus Inc.
Intended status: Experimental February 1, 2021
Expires: August 5, 2021
Quic Timestamps For Measuring One-Way Delays
draft-huitema-quic-ts-04
Abstract
The TIME_STAMP frame can be added to Quic packets when one way delay
measurements is useful. The timestamp is set to the number of
microseconds from the beginning of the connection to the time at
which the packet is sent. The draft defines the "enable_time_stamp"
transport parameter for negotiating the use of this extension frame,
and a new frame types for the time_stamped frame.
Status of This Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at https://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on August 5, 2021.
Copyright Notice
Copyright (c) 2021 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(https://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
Huitema Expires August 5, 2021 [Page 1]
Internet-Draft QUIC-TS February 2021
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 2
1.1. Terms and Definitions . . . . . . . . . . . . . . . . . . 3
2. Specification . . . . . . . . . . . . . . . . . . . . . . . . 3
2.1. Negotiation . . . . . . . . . . . . . . . . . . . . . . . 3
2.2. Sending TIME_STAMP frames . . . . . . . . . . . . . . . . 4
2.3. TIME_STAMP frame format . . . . . . . . . . . . . . . . . 4
2.4. RTT Measurements . . . . . . . . . . . . . . . . . . . . 5
2.5. One-Way Delay Measurements . . . . . . . . . . . . . . . 5
3. Discussion . . . . . . . . . . . . . . . . . . . . . . . . . 6
3.1. Management of Time . . . . . . . . . . . . . . . . . . . 6
4. Security Considerations . . . . . . . . . . . . . . . . . . . 7
5. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 8
6. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . 8
7. References . . . . . . . . . . . . . . . . . . . . . . . . . 8
7.1. Normative References . . . . . . . . . . . . . . . . . . 8
7.2. Informative References . . . . . . . . . . . . . . . . . 9
Author's Address . . . . . . . . . . . . . . . . . . . . . . . . 9
1. Introduction
The QUIC Transport Protocol [I-D.ietf-quic-transport] provides a
secure, multiplexed connection for transmitting reliable streams of
application data. The algorithms for QUIC Loss Detection and
Congestion Control [I-D.ietf-quic-recovery] use measurement of Round
Trip Time (RTT) to determine when packets should be retransmitted.
RTT measurements are useful, but there are however many cases in
which more precise One-Way Delay (1WD) measurements enable more
efficient Loss Detection and Congestion Control.
An example would be the Low Extra Delay Background Transport (LEDBAT)
[RFC6817] which uses variations in transmission delay to detect
competition for transmission resource. Experience shows that while
LEDBAT may be implemented using RTT measurements, this is inefficient
because queues on the return path or delayed ACKs will cause
unnecessary slowdowns. Using 1WD solves these issues. Similar
argument can be made for most delay-based congestion control
algorithms algorithms.
We propose to enable one way delay measurements in QUIC by defining a
TIME_STAMP frame carrying the time at which a packet is sent. The
use of this extension frame is negotiated with a transport parameter,
"enable_time_stamp". When the extension is negotiated by both
Huitema Expires August 5, 2021 [Page 2]
Show full document text