Skip to content

Commit

Permalink
Script updating gh-pages from c56d843. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
ID Bot committed Jul 17, 2019
1 parent 445c7dd commit 6cdede4
Show file tree
Hide file tree
Showing 5 changed files with 1,369 additions and 1,370 deletions.
2 changes: 1 addition & 1 deletion draft-ietf-quic-http.html
Expand Up @@ -1917,7 +1917,7 @@ <h2 id="rfc.references.2">
<tr>
<td class="reference"><b id="HPACK">[HPACK]</b></td>
<td class="top">
<a>Fielding, R.</a> and <a>J. Reschke</a>, "<a href="https://tools.ietf.org/html/rfc7231">Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</a>", RFC 7231, DOI 10.17487/RFC7231, June 2014.</td>
<a>Peon, R.</a> and <a>H. Ruellan</a>, "<a href="https://tools.ietf.org/html/rfc7541">HPACK: Header Compression for HTTP/2</a>", RFC 7541, DOI 10.17487/RFC7541, May 2015.</td>
</tr>
<tr>
<td class="reference"><b id="RFC6585">[RFC6585]</b></td>
Expand Down
8 changes: 4 additions & 4 deletions draft-ietf-quic-http.txt
Expand Up @@ -2725,10 +2725,9 @@ Internet-Draft HTTP/3 July 2019

12.2. Informative References

[HPACK] Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer
Protocol (HTTP/1.1): Semantics and Content", RFC 7231,
DOI 10.17487/RFC7231, June 2014,
<https://www.rfc-editor.org/info/rfc7231>.
[HPACK] Peon, R. and H. Ruellan, "HPACK: Header Compression for
HTTP/2", RFC 7541, DOI 10.17487/RFC7541, May 2015,
<https://www.rfc-editor.org/info/rfc7541>.

[RFC6585] Nottingham, M. and R. Fielding, "Additional HTTP Status
Codes", RFC 6585, DOI 10.17487/RFC6585, April 2012,
Expand All @@ -2741,6 +2740,7 @@ Internet-Draft HTTP/3 July 2019




Bishop Expires January 18, 2020 [Page 49]

Internet-Draft HTTP/3 July 2019
Expand Down
11 changes: 5 additions & 6 deletions draft-ietf-quic-recovery.html
Expand Up @@ -1326,14 +1326,13 @@ <h2 id="rfc.appendix.A.8">
loss_detection_timer.cancel()
return

// Use a default timeout if ther are no RTT measurements
// Use a default timeout if there are no RTT measurements
if (smoothed_rtt == 0):
timeout = 2 * kInitialRtt
return

// Calculate PTO duration
timeout =
smoothed_rtt + max(4 * rttvar, kGranularity) + max_ack_delay
else:
// Calculate PTO duration
timeout = smoothed_rtt + max(4 * rttvar, kGranularity) +
max_ack_delay
timeout = timeout * (2 ^ pto_count)

loss_detection_timer.update(
Expand Down
12 changes: 6 additions & 6 deletions draft-ietf-quic-recovery.txt
Expand Up @@ -1652,14 +1652,13 @@ Internet-Draft QUIC Loss Detection July 2019
loss_detection_timer.cancel()
return

// Use a default timeout if ther are no RTT measurements
// Use a default timeout if there are no RTT measurements
if (smoothed_rtt == 0):
timeout = 2 * kInitialRtt
return

// Calculate PTO duration
timeout =
smoothed_rtt + max(4 * rttvar, kGranularity) + max_ack_delay
else:
// Calculate PTO duration
timeout = smoothed_rtt + max(4 * rttvar, kGranularity) +
max_ack_delay
timeout = timeout * (2 ^ pto_count)

loss_detection_timer.update(
Expand All @@ -1677,6 +1676,7 @@ A.9. On Timeout




Iyengar & Swett Expires January 18, 2020 [Page 30]

Internet-Draft QUIC Loss Detection July 2019
Expand Down

0 comments on commit 6cdede4

Please sign in to comment.