Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
martinduke <notifications@github.com> Mon, 28 October 2019 17:31 UTC
Return-Path: <noreply@github.com>
X-Original-To: quic-issues@ietfa.amsl.com
Delivered-To: quic-issues@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 8038C120903 for <quic-issues@ietfa.amsl.com>; Mon, 28 Oct 2019 10:31:19 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -8
X-Spam-Level:
X-Spam-Status: No, score=-8 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, HTML_MESSAGE=0.001, MAILING_LIST_MULTI=-1, RCVD_IN_DNSWL_HI=-5, SPF_HELO_NONE=0.001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Authentication-Results: ietfa.amsl.com (amavisd-new); dkim=pass (1024-bit key) header.d=github.com
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qyNHNMsJi88m for <quic-issues@ietfa.amsl.com>; Mon, 28 Oct 2019 10:31:18 -0700 (PDT)
Received: from out-22.smtp.github.com (out-22.smtp.github.com [192.30.252.205]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id E13171207FD for <quic-issues@ietf.org>; Mon, 28 Oct 2019 10:31:17 -0700 (PDT)
Date: Mon, 28 Oct 2019 10:31:17 -0700
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2014; t=1572283877; bh=gfCiFXe8pmunbO+E6Kp6VGcpF9rr54lnD7J8W7M/dB8=; h=Date:From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID: List-Archive:List-Post:List-Unsubscribe:From; b=0XPwekQSbFy7P+PKVtLjfWwfwBjpvSXeXxAQpIoWS0jRM9Y2CZRqTMDy6+pg/qJnd q7Z3X1kwrv0ZkNRBwdvwt67FtAG3FVWq4E/ozPIoVAxuwHSpaE6EhnoxUbATKy80FT Bjo8/ycnvF3DBJKKsf6mo+FL59PNRjzLh6dmiVKU=
From: martinduke <notifications@github.com>
Reply-To: quicwg/base-drafts <reply+AFTOJK2KCSEBUY5VQWBNCMF3YRTHLEVBNHHB3IPO4M@reply.github.com>
To: quicwg/base-drafts <base-drafts@noreply.github.com>
Cc: Subscribed <subscribed@noreply.github.com>
Message-ID: <quicwg/base-drafts/pull/3057/review/308023864@github.com>
In-Reply-To: <quicwg/base-drafts/pull/3057@github.com>
References: <quicwg/base-drafts/pull/3057@github.com>
Subject: Re: [quicwg/base-drafts] PTO MUST send new data or retransmit data if possible (#3057)
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="--==_mimepart_5db725e52fa3f_53b53fb4c24cd96410592"; charset="UTF-8"
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: martinduke
X-GitHub-Recipient: quic-issues
X-GitHub-Reason: subscribed
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: quic-issues@ietf.org
Archived-At: <https://mailarchive.ietf.org/arch/msg/quic-issues/ew1PSnwUKLZCyn6fPefMK7S6lZ0>
X-BeenThere: quic-issues@ietf.org
X-Mailman-Version: 2.1.29
List-Id: Notification list for GitHub issues related to the QUIC WG <quic-issues.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/quic-issues/>
List-Post: <mailto:quic-issues@ietf.org>
List-Help: <mailto:quic-issues-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/quic-issues>, <mailto:quic-issues-request@ietf.org?subject=subscribe>
X-List-Received-Date: Mon, 28 Oct 2019 17:31:19 -0000
martinduke commented on this pull request. > -When there is no data to send, the sender SHOULD send a PING or other -ack-eliciting frame in a single packet, re-arming the PTO timer. +It is possible the sender has no new or previously-sent data to send. +As an example, consider the following sequence of events: new application data +is sent in a STREAM frame, deemed lost, then retransmitted in a new packet, +and then the original transmission is acknowledged. When there is no data to +send, the sender SHOULD send a PING or other ack-eliciting frame in a single +packet, re-arming the PTO timer. What is the purpose of this statement? > Data that was previously sent with Initial encryption > MUST be sent before Handshake data and data previously sent at Handshake > MUST be sent before any ApplicationData data. Doesn't this conflict with the "PTO per packet number space" PR? If I'm implementing that PR most literally, I should PTO only the data from the space that expired. For example, I can have the 0RTT/1RTT PTO timer running first with some handshake data also in flight, and I should send just 0RTT/1RTT. If I'm coalescing, I'm not sure why this would matter. As for "MUST send new/unacked data", is that necessary? Why is not OK to send a PING instead to reduce bytes in flight? Perhaps I'm expecting new data soon and want to preserve the window space? I'd prefer if this were a SHOULD. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/quicwg/base-drafts/pull/3057#discussion_r339696919
- [quicwg/base-drafts] MUST send new data or retran… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… Benjamin Saunders
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… Benjamin Saunders
- Re: [quicwg/base-drafts] PTO MUST send new data o… Benjamin Saunders
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… Martin Thomson
- Re: [quicwg/base-drafts] PTO MUST send new data o… Benjamin Saunders
- Re: [quicwg/base-drafts] PTO MUST send new data o… Tatsuhiro Tsujikawa
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… Benjamin Saunders
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… Martin Thomson
- Re: [quicwg/base-drafts] PTO MUST send new data o… Benjamin Saunders
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… Jana Iyengar
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… martinduke
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… ianswett
- Re: [quicwg/base-drafts] PTO MUST send new data o… Jana Iyengar
- Re: [quicwg/base-drafts] PTO MUST send new data o… Jana Iyengar
- Re: [quicwg/base-drafts] PTO MUST send new data o… Jana Iyengar