source: draft-ietf-httpbis-http2/latest/draft-ietf-httpbis-http2.html @ 2496

Last change on this file since 2496 was 2174, checked in by martin.thomson@…, 10 years ago

Adding decisions on flow control, removing versions.

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/html;charset=utf-8
File size: 157.5 KB
Line 
1<!DOCTYPE html
2  PUBLIC "-//W3C//DTD HTML 4.01//EN">
3<html lang="en">
4   <head profile="http://www.w3.org/2006/03/hcard http://dublincore.org/documents/2008/08/04/dc-html/">
5      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
6      <title>Hypertext Transfer Protocol version 2.0</title><script>
7var buttonsAdded = false;
8
9function init() {
10  var fb = document.createElement("div");
11  fb.className = "feedback noprint";
12  fb.setAttribute("onclick", "feedback();");
13  fb.appendChild(document.createTextNode("feedback"));
14
15  var bodyl = document.getElementsByTagName("body");
16  bodyl.item(0).appendChild(fb);
17}
18
19function feedback() {
20  toggleButtonsToElementsByName("h1");
21  toggleButtonsToElementsByName("h2");
22  toggleButtonsToElementsByName("h3");
23  toggleButtonsToElementsByName("h4");
24 
25  buttonsAdded = !buttonsAdded;
26}
27
28function toggleButtonsToElementsByName(name) {
29  var list = document.getElementsByTagName(name);
30  for (var i = 0; i < list.length; i++) {
31    toggleButton(list.item(i));
32  }
33}
34
35function toggleButton(node) {
36  if (! buttonsAdded) {
37 
38    // docname
39    var template = "mailto:ietf-http-wg@w3.org?subject={docname},%20%22{section}%22&body=<{ref}>:";
40
41    var id = node.getAttribute("id");
42    // better id available?
43    var titlelinks = node.getElementsByTagName("a");
44    for (var i = 0; i < titlelinks.length; i++) {
45      var tl = titlelinks.item(i);
46      if (tl.getAttribute("id")) {
47        id = tl.getAttribute("id");
48      }
49    }
50
51    // ref
52    var ref = window.location.toString();
53    var hash = ref.indexOf("#");
54    if (hash != -1) {
55      ref = ref.substring(0, hash);
56    }
57    if (id != "") {
58      ref += "#" + id;
59    }
60   
61    // docname
62    var docname = "draft-ietf-httpbis-http2-latest";
63
64    // section
65    var section = node.textContent;
66    section = section.replace("\u00a0", " ");
67   
68    // build URI from template
69    var uri = template.replace("{docname}", encodeURIComponent(docname));
70    uri = uri.replace("{section}", encodeURIComponent(section));
71    uri = uri.replace("{ref}", encodeURIComponent(ref));
72 
73    var button = document.createElement("a");
74    button.className = "fbbutton noprint";
75    button.setAttribute("href", uri);
76    button.appendChild(document.createTextNode("send feedback"));
77    node.appendChild(button);
78  }
79  else {
80    var buttons = node.getElementsByTagName("a");
81    for (var i = 0; i < buttons.length; i++) {
82      var b = buttons.item(i);
83      if (b.className == "fbbutton noprint") {
84        node.removeChild(b);
85      }
86    }
87  }
88}</script><style type="text/css" title="Xml2Rfc (sans serif)">
89a {
90  text-decoration: none;
91}
92a.smpl {
93  color: black;
94}
95a:hover {
96  text-decoration: underline;
97}
98a:active {
99  text-decoration: underline;
100}
101address {
102  margin-top: 1em;
103  margin-left: 2em;
104  font-style: normal;
105}
106body {
107  color: black;
108  font-family: verdana, helvetica, arial, sans-serif;
109  font-size: 10pt;
110  margin-right: 2em;
111}
112cite {
113  font-style: normal;
114}
115dl {
116  margin-left: 2em;
117}
118ul.empty {
119  list-style-type: none;
120}
121ul.empty li {
122  margin-top: .5em;
123}
124dl p {
125  margin-left: 0em;
126}
127dt {
128  margin-top: .5em;
129}
130h1 {
131  font-size: 14pt;
132  line-height: 21pt;
133  page-break-after: avoid;
134}
135h1.np {
136  page-break-before: always;
137}
138h1 a {
139  color: #333333;
140}
141h2 {
142  font-size: 12pt;
143  line-height: 15pt;
144  page-break-after: avoid;
145}
146h3, h4, h5, h6 {
147  font-size: 10pt;
148  page-break-after: avoid;
149}
150h2 a, h3 a, h4 a, h5 a, h6 a {
151  color: black;
152}
153img {
154  margin-left: 3em;
155}
156li {
157  margin-left: 2em;
158}
159ol {
160  margin-left: 2em;
161}
162ol.la {
163  list-style-type: lower-alpha;
164}
165ol.ua {
166  list-style-type: upper-alpha;
167}
168ol p {
169  margin-left: 0em;
170}
171p {
172  margin-left: 2em;
173}
174pre {
175  margin-left: 3em;
176  background-color: lightyellow;
177  padding: .25em;
178  page-break-inside: avoid;
179}
180pre.ccmarker {
181  background-color: white;
182  color: gray;
183}
184pre.ccmarker > span {
185  font-size: small;
186}
187pre.cct {
188  margin-bottom: -1em;
189}
190pre.ccb {
191  margin-top: -1em;
192}
193pre.text2 {
194  border-style: dotted;
195  border-width: 1px;
196  background-color: #f0f0f0;
197  width: 69em;
198}
199pre.inline {
200  background-color: white;
201  padding: 0em;
202}
203pre.text {
204  border-style: dotted;
205  border-width: 1px;
206  background-color: #f8f8f8;
207  width: 69em;
208}
209pre.drawing {
210  border-style: solid;
211  border-width: 1px;
212  background-color: #f8f8f8;
213  padding: 2em;
214}
215table {
216  margin-left: 2em;
217}
218table.header {
219  border-spacing: 1px;
220  width: 95%;
221  font-size: 10pt;
222  color: white;
223}
224td.top {
225  vertical-align: top;
226}
227td.topnowrap {
228  vertical-align: top;
229  white-space: nowrap;
230}
231table.header td {
232  background-color: gray;
233  width: 50%;
234}
235td.reference {
236  vertical-align: top;
237  white-space: nowrap;
238  padding-right: 1em;
239}
240thead {
241  display:table-header-group;
242}
243ul.toc, ul.toc ul {
244  list-style: none;
245  margin-left: 1.5em;
246  padding-left: 0em;
247}
248ul.toc li {
249  line-height: 150%;
250  font-weight: bold;
251  font-size: 10pt;
252  margin-left: 0em;
253}
254ul.toc li li {
255  line-height: normal;
256  font-weight: normal;
257  font-size: 9pt;
258  margin-left: 0em;
259}
260li.excluded {
261  font-size: 0pt;
262}
263ul p {
264  margin-left: 0em;
265}
266ul.ind, ul.ind ul {
267  list-style: none;
268  margin-left: 1.5em;
269  padding-left: 0em;
270  page-break-before: avoid;
271}
272ul.ind li {
273  font-weight: bold;
274  line-height: 200%;
275  margin-left: 0em;
276}
277ul.ind li li {
278  font-weight: normal;
279  line-height: 150%;
280  margin-left: 0em;
281}
282.avoidbreak {
283  page-break-inside: avoid;
284}
285
286.comment {
287  background-color: yellow;
288}
289.center {
290  text-align: center;
291}
292.error {
293  color: red;
294  font-style: italic;
295  font-weight: bold;
296}
297.figure {
298  font-weight: bold;
299  text-align: center;
300  font-size: 9pt;
301}
302.filename {
303  color: #333333;
304  font-weight: bold;
305  font-size: 12pt;
306  line-height: 21pt;
307  text-align: center;
308}
309.fn {
310  font-weight: bold;
311}
312.hidden {
313  display: none;
314}
315.left {
316  text-align: left;
317}
318.right {
319  text-align: right;
320}
321.title {
322  color: #990000;
323  font-size: 18pt;
324  line-height: 18pt;
325  font-weight: bold;
326  text-align: center;
327  margin-top: 36pt;
328}
329.vcardline {
330  display: block;
331}
332.warning {
333  font-size: 14pt;
334  background-color: yellow;
335}
336.feedback {
337  position: fixed;
338  bottom: 1%;
339  right: 1%;
340  padding: 3px 5px;
341  color: white;
342  border-radius: 5px;
343  background: #a00000;
344  border: 1px solid silver;
345}
346.fbbutton {
347  margin-left: 1em;
348  color: #303030;
349  font-size: small;
350  font-weight: normal;
351  background: #d0d000;
352  padding: 1px 4px;
353  border: 1px solid silver;
354  border-radius: 5px;
355}
356
357@media print {
358  .noprint {
359    display: none;
360  }
361 
362  a {
363    color: black;
364    text-decoration: none;
365  }
366
367  table.header {
368    width: 90%;
369  }
370
371  td.header {
372    width: 50%;
373    color: black;
374    background-color: white;
375    vertical-align: top;
376    font-size: 12pt;
377  }
378
379  ul.toc a:nth-child(2)::after {
380    content: leader('.') target-counter(attr(href), page);
381  }
382 
383  ul.ind li li a {
384    content: target-counter(attr(href), page);
385  }
386 
387  .print2col {
388    column-count: 2;
389    -moz-column-count: 2;
390    column-fill: auto;
391  }
392}
393
394@page {
395  @top-left {
396       content: "Internet-Draft";
397  }
398  @top-right {
399       content: "January 2013";
400  }
401  @top-center {
402       content: "HTTP/2.0";
403  }
404  @bottom-left {
405       content: "Belshe, et al.";
406  }
407  @bottom-center {
408       content: "Expires August 4, 2013";
409  }
410  @bottom-right {
411       content: "[Page " counter(page) "]";
412  }
413}
414
415@page:first {
416    @top-left {
417      content: normal;
418    }
419    @top-right {
420      content: normal;
421    }
422    @top-center {
423      content: normal;
424    }
425}
426</style><link rel="Contents" href="#rfc.toc">
427      <link rel="Author" href="#rfc.authors">
428      <link rel="Copyright" href="#rfc.copyrightnotice">
429      <link rel="Index" href="#rfc.index">
430      <link rel="Chapter" title="1 Introduction" href="#rfc.section.1">
431      <link rel="Chapter" title="2 Starting HTTP/2.0" href="#rfc.section.2">
432      <link rel="Chapter" title="3 HTTP/2.0 Framing Layer" href="#rfc.section.3">
433      <link rel="Chapter" title="4 HTTP Layering over HTTP/2.0" href="#rfc.section.4">
434      <link rel="Chapter" title="5 Design Rationale and Notes" href="#rfc.section.5">
435      <link rel="Chapter" title="6 Security Considerations" href="#rfc.section.6">
436      <link rel="Chapter" title="7 Privacy Considerations" href="#rfc.section.7">
437      <link rel="Chapter" title="8 Requirements Notation" href="#rfc.section.8">
438      <link rel="Chapter" title="9 Acknowledgements" href="#rfc.section.9">
439      <link rel="Chapter" href="#rfc.section.10" title="10 Normative References">
440      <link rel="Appendix" title="A Change Log (to be removed by RFC Editor before publication)" href="#rfc.section.A">
441      <meta name="generator" content="http://greenbytes.de/tech/webdav/rfc2629.xslt, Revision 1.588, 2012-08-25 12:28:24, XSLT vendor: SAXON 8.9 from Saxonica http://www.saxonica.com/">
442      <meta name="keywords" content="HTTP">
443      <link rel="schema.dct" href="http://purl.org/dc/terms/">
444      <meta name="dct.creator" content="Belshe, M.">
445      <meta name="dct.creator" content="Peon, R.">
446      <meta name="dct.creator" content="Thomson, M.">
447      <meta name="dct.creator" content="Melnikov, A.">
448      <meta name="dct.identifier" content="urn:ietf:id:draft-ietf-httpbis-http2-latest">
449      <meta name="dct.issued" scheme="ISO8601" content="2013-01-31">
450      <meta name="dct.abstract" content="This document describes an optimised expression of the semantics of the HTTP protocol. The HTTP/2.0 encapsulation enables more efficient transfer of resources over HTTP by providing compressed headers, simultaneous requests, and unsolicited push of resources from server to client. This document is an alternative to, but does not obsolete RFC{http-p1}. The HTTP protocol semantics described in RFC{http-p2..p7} are unmodified.">
451      <meta name="description" content="This document describes an optimised expression of the semantics of the HTTP protocol. The HTTP/2.0 encapsulation enables more efficient transfer of resources over HTTP by providing compressed headers, simultaneous requests, and unsolicited push of resources from server to client. This document is an alternative to, but does not obsolete RFC{http-p1}. The HTTP protocol semantics described in RFC{http-p2..p7} are unmodified.">
452   </head>
453   <body onload="init();">
454      <table class="header">
455         <tbody>
456            <tr>
457               <td class="left">HTTPbis Working Group</td>
458               <td class="right">M. Belshe</td>
459            </tr>
460            <tr>
461               <td class="left">Internet-Draft</td>
462               <td class="right">Twist</td>
463            </tr>
464            <tr>
465               <td class="left">Intended status: Informational</td>
466               <td class="right">R. Peon</td>
467            </tr>
468            <tr>
469               <td class="left">Expires: August 4, 2013</td>
470               <td class="right">Google, Inc</td>
471            </tr>
472            <tr>
473               <td class="left"></td>
474               <td class="right">M. Thomson, Editor</td>
475            </tr>
476            <tr>
477               <td class="left"></td>
478               <td class="right">Microsoft</td>
479            </tr>
480            <tr>
481               <td class="left"></td>
482               <td class="right">A. Melnikov, Editor</td>
483            </tr>
484            <tr>
485               <td class="left"></td>
486               <td class="right">Isode Ltd</td>
487            </tr>
488            <tr>
489               <td class="left"></td>
490               <td class="right">January 31, 2013</td>
491            </tr>
492         </tbody>
493      </table>
494      <p class="title">Hypertext Transfer Protocol version 2.0<br><span class="filename">draft-ietf-httpbis-http2-latest</span></p>
495      <h1 id="rfc.abstract"><a href="#rfc.abstract">Abstract</a></h1>
496      <p>This document describes an optimised expression of the semantics of the HTTP protocol. The HTTP/2.0 encapsulation enables
497         more efficient transfer of resources over HTTP by providing compressed headers, simultaneous requests, and unsolicited push
498         of resources from server to client.
499      </p> 
500      <p>This document is an alternative to, but does not obsolete RFC{http-p1}. The HTTP protocol semantics described in RFC{http-p2..p7}
501         are unmodified.
502      </p>
503      <h1 id="rfc.note.1"><a href="#rfc.note.1">Editorial Note (To be removed by RFC Editor)</a></h1>
504      <p>This draft is a work-in-progress, and does not yet reflect Working Group consensus.</p> 
505      <p>This draft contains features from the SPDY Protocol as a starting point, as per the Working Group's charter. Future drafts
506         will add, remove and change text, based upon the Working Group's decisions.
507      </p> 
508      <p>Discussion of this draft takes place on the HTTPBIS working group mailing list (ietf-http-wg@w3.org), which is archived at &lt;<a href="http://lists.w3.org/Archives/Public/ietf-http-wg/">http://lists.w3.org/Archives/Public/ietf-http-wg/</a>&gt;.
509      </p> 
510      <p>The current issues list is at &lt;<a href="http://tools.ietf.org/wg/httpbis/trac/report/21">http://tools.ietf.org/wg/httpbis/trac/report/21</a>&gt; and related documents (including fancy diffs) can be found at &lt;<a href="http://tools.ietf.org/wg/httpbis/">http://tools.ietf.org/wg/httpbis/</a>&gt;.
511      </p> 
512      <p>The changes in this draft are summarized in <a href="#changes.since.draft-ietf-httpbis-http2-01" title="Since draft-ietf-httpbis-http2-01">Appendix&nbsp;A.1</a>.
513      </p>
514      <h1><a id="rfc.status" href="#rfc.status">Status of This Memo</a></h1>
515      <p>This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.</p>
516      <p>Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute
517         working documents as Internet-Drafts. The list of current Internet-Drafts is at <a href="http://datatracker.ietf.org/drafts/current/">http://datatracker.ietf.org/drafts/current/</a>.
518      </p>
519      <p>Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other
520         documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work
521         in progress”.
522      </p>
523      <p>This Internet-Draft will expire on August 4, 2013.</p>
524      <h1><a id="rfc.copyrightnotice" href="#rfc.copyrightnotice">Copyright Notice</a></h1>
525      <p>Copyright © 2013 IETF Trust and the persons identified as the document authors. All rights reserved.</p>
526      <p>This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights
527         and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License
528         text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified
529         BSD License.
530      </p>
531      <hr class="noprint">
532      <h1 class="np" id="rfc.toc"><a href="#rfc.toc">Table of Contents</a></h1>
533      <ul class="toc">
534         <li><a href="#rfc.section.1">1.</a>&nbsp;&nbsp;&nbsp;<a href="#intro">Introduction</a><ul>
535               <li><a href="#rfc.section.1.1">1.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.1.1">Document Organization</a></li>
536               <li><a href="#rfc.section.1.2">1.2</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.1.2">Definitions</a></li>
537            </ul>
538         </li>
539         <li><a href="#rfc.section.2">2.</a>&nbsp;&nbsp;&nbsp;<a href="#starting">Starting HTTP/2.0</a><ul>
540               <li><a href="#rfc.section.2.1">2.1</a>&nbsp;&nbsp;&nbsp;<a href="#versioning">HTTP/2.0 Version Identification</a></li>
541               <li><a href="#rfc.section.2.2">2.2</a>&nbsp;&nbsp;&nbsp;<a href="#discover-http">Starting HTTP/2.0 for "http:" URIs</a></li>
542               <li><a href="#rfc.section.2.3">2.3</a>&nbsp;&nbsp;&nbsp;<a href="#discover-https">Starting HTTP/2.0 for "https:" URIs</a></li>
543            </ul>
544         </li>
545         <li><a href="#rfc.section.3">3.</a>&nbsp;&nbsp;&nbsp;<a href="#FramingLayer">HTTP/2.0 Framing Layer</a><ul>
546               <li><a href="#rfc.section.3.1">3.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.3.1">Session (Connections)</a></li>
547               <li><a href="#rfc.section.3.2">3.2</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.3.2">Framing</a><ul>
548                     <li><a href="#rfc.section.3.2.1">3.2.1</a>&nbsp;&nbsp;&nbsp;<a href="#ControlFrames">Control frames</a></li>
549                     <li><a href="#rfc.section.3.2.2">3.2.2</a>&nbsp;&nbsp;&nbsp;<a href="#DataFrames">Data frames</a></li>
550                  </ul>
551               </li>
552               <li><a href="#rfc.section.3.3">3.3</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.3.3">Streams</a><ul>
553                     <li><a href="#rfc.section.3.3.1">3.3.1</a>&nbsp;&nbsp;&nbsp;<a href="#StreamFrames">Stream frames</a></li>
554                     <li><a href="#rfc.section.3.3.2">3.3.2</a>&nbsp;&nbsp;&nbsp;<a href="#StreamCreation">Stream creation</a><ul>
555                           <li><a href="#rfc.section.3.3.2.1">3.3.2.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.3.3.2.1">Unidirectional streams</a></li>
556                           <li><a href="#rfc.section.3.3.2.2">3.3.2.2</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.3.3.2.2">Bidirectional streams</a></li>
557                        </ul>
558                     </li>
559                     <li><a href="#rfc.section.3.3.3">3.3.3</a>&nbsp;&nbsp;&nbsp;<a href="#StreamPriority">Stream priority</a></li>
560                     <li><a href="#rfc.section.3.3.4">3.3.4</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.3.3.4">Stream headers</a></li>
561                     <li><a href="#rfc.section.3.3.5">3.3.5</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.3.3.5">Stream data exchange</a></li>
562                     <li><a href="#rfc.section.3.3.6">3.3.6</a>&nbsp;&nbsp;&nbsp;<a href="#StreamHalfClose">Stream half-close</a></li>
563                     <li><a href="#rfc.section.3.3.7">3.3.7</a>&nbsp;&nbsp;&nbsp;<a href="#StreamClose">Stream close</a></li>
564                  </ul>
565               </li>
566               <li><a href="#rfc.section.3.4">3.4</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.3.4">Error Handling</a><ul>
567                     <li><a href="#rfc.section.3.4.1">3.4.1</a>&nbsp;&nbsp;&nbsp;<a href="#SessionErrorHandler">Session Error Handling</a></li>
568                     <li><a href="#rfc.section.3.4.2">3.4.2</a>&nbsp;&nbsp;&nbsp;<a href="#StreamErrorHandler">Stream Error Handling</a></li>
569                  </ul>
570               </li>
571               <li><a href="#rfc.section.3.5">3.5</a>&nbsp;&nbsp;&nbsp;<a href="#flowcontrol">Stream Flow Control</a><ul>
572                     <li><a href="#rfc.section.3.5.1">3.5.1</a>&nbsp;&nbsp;&nbsp;<a href="#fc-principles">Flow Control Principles</a></li>
573                     <li><a href="#rfc.section.3.5.2">3.5.2</a>&nbsp;&nbsp;&nbsp;<a href="#fc-basic">Basic Flow Control Algorithm</a></li>
574                  </ul>
575               </li>
576               <li><a href="#rfc.section.3.6">3.6</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.3.6">Control frame types</a><ul>
577                     <li><a href="#rfc.section.3.6.1">3.6.1</a>&nbsp;&nbsp;&nbsp;<a href="#SYN_STREAM">SYN_STREAM</a></li>
578                     <li><a href="#rfc.section.3.6.2">3.6.2</a>&nbsp;&nbsp;&nbsp;<a href="#SYN_REPLY">SYN_REPLY</a></li>
579                     <li><a href="#rfc.section.3.6.3">3.6.3</a>&nbsp;&nbsp;&nbsp;<a href="#RST_STREAM">RST_STREAM</a></li>
580                     <li><a href="#rfc.section.3.6.4">3.6.4</a>&nbsp;&nbsp;&nbsp;<a href="#SETTINGS">SETTINGS</a></li>
581                     <li><a href="#rfc.section.3.6.5">3.6.5</a>&nbsp;&nbsp;&nbsp;<a href="#PING">PING</a></li>
582                     <li><a href="#rfc.section.3.6.6">3.6.6</a>&nbsp;&nbsp;&nbsp;<a href="#GOAWAY">GOAWAY</a></li>
583                     <li><a href="#rfc.section.3.6.7">3.6.7</a>&nbsp;&nbsp;&nbsp;<a href="#HEADERS">HEADERS</a></li>
584                     <li><a href="#rfc.section.3.6.8">3.6.8</a>&nbsp;&nbsp;&nbsp;<a href="#WINDOW_UPDATE">WINDOW_UPDATE</a></li>
585                     <li><a href="#rfc.section.3.6.9">3.6.9</a>&nbsp;&nbsp;&nbsp;<a href="#CREDENTIAL">CREDENTIAL</a></li>
586                     <li><a href="#rfc.section.3.6.10">3.6.10</a>&nbsp;&nbsp;&nbsp;<a href="#HeaderBlock">Name/Value Header Block</a><ul>
587                           <li><a href="#rfc.section.3.6.10.1">3.6.10.1</a>&nbsp;&nbsp;&nbsp;<a href="#Compression">Compression</a></li>
588                        </ul>
589                     </li>
590                  </ul>
591               </li>
592            </ul>
593         </li>
594         <li><a href="#rfc.section.4">4.</a>&nbsp;&nbsp;&nbsp;<a href="#HTTPLayer">HTTP Layering over HTTP/2.0</a><ul>
595               <li><a href="#rfc.section.4.1">4.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.4.1">Connection Management</a><ul>
596                     <li><a href="#rfc.section.4.1.1">4.1.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.4.1.1">Use of GOAWAY</a></li>
597                  </ul>
598               </li>
599               <li><a href="#rfc.section.4.2">4.2</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.4.2">HTTP Request/Response</a><ul>
600                     <li><a href="#rfc.section.4.2.1">4.2.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.4.2.1">Request</a></li>
601                     <li><a href="#rfc.section.4.2.2">4.2.2</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.4.2.2">Response</a></li>
602                     <li><a href="#rfc.section.4.2.3">4.2.3</a>&nbsp;&nbsp;&nbsp;<a href="#Authentication">Authentication</a><ul>
603                           <li><a href="#rfc.section.4.2.3.1">4.2.3.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.4.2.3.1">Stateless Authentication</a></li>
604                           <li><a href="#rfc.section.4.2.3.2">4.2.3.2</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.4.2.3.2">Stateful Authentication</a></li>
605                        </ul>
606                     </li>
607                  </ul>
608               </li>
609               <li><a href="#rfc.section.4.3">4.3</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.4.3">Server Push Transactions</a><ul>
610                     <li><a href="#rfc.section.4.3.1">4.3.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.4.3.1">Server implementation</a></li>
611                     <li><a href="#rfc.section.4.3.2">4.3.2</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.4.3.2">Client implementation</a></li>
612                  </ul>
613               </li>
614            </ul>
615         </li>
616         <li><a href="#rfc.section.5">5.</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.5">Design Rationale and Notes</a><ul>
617               <li><a href="#rfc.section.5.1">5.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.5.1">Separation of Framing Layer and Application Layer</a></li>
618               <li><a href="#rfc.section.5.2">5.2</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.5.2">Error handling - Framing Layer</a></li>
619               <li><a href="#rfc.section.5.3">5.3</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.5.3">One Connection Per Domain</a></li>
620               <li><a href="#rfc.section.5.4">5.4</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.5.4">Fixed vs Variable Length Fields</a></li>
621               <li><a href="#rfc.section.5.5">5.5</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.5.5">Compression Context(s)</a></li>
622               <li><a href="#rfc.section.5.6">5.6</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.5.6">Unidirectional streams</a></li>
623               <li><a href="#rfc.section.5.7">5.7</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.5.7">Data Compression</a></li>
624               <li><a href="#rfc.section.5.8">5.8</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.5.8">Server Push</a></li>
625            </ul>
626         </li>
627         <li><a href="#rfc.section.6">6.</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.6">Security Considerations</a><ul>
628               <li><a href="#rfc.section.6.1">6.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.6.1">Use of Same-origin constraints</a></li>
629               <li><a href="#rfc.section.6.2">6.2</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.6.2">HTTP Headers and HTTP/2.0 Headers</a></li>
630               <li><a href="#rfc.section.6.3">6.3</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.6.3">Cross-Protocol Attacks</a></li>
631               <li><a href="#rfc.section.6.4">6.4</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.6.4">Server Push Implicit Headers</a></li>
632            </ul>
633         </li>
634         <li><a href="#rfc.section.7">7.</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.7">Privacy Considerations</a><ul>
635               <li><a href="#rfc.section.7.1">7.1</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.7.1">Long Lived Connections</a></li>
636               <li><a href="#rfc.section.7.2">7.2</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.7.2">SETTINGS frame</a></li>
637            </ul>
638         </li>
639         <li><a href="#rfc.section.8">8.</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.8">Requirements Notation</a></li>
640         <li><a href="#rfc.section.9">9.</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.section.9">Acknowledgements</a></li>
641         <li><a href="#rfc.section.10">10.</a>&nbsp;&nbsp;&nbsp;<a href="#rfc.references">Normative References</a></li>
642         <li><a href="#rfc.authors">Authors' Addresses</a></li>
643         <li><a href="#rfc.section.A">A.</a>&nbsp;&nbsp;&nbsp;<a href="#change.log">Change Log (to be removed by RFC Editor before publication)</a><ul>
644               <li><a href="#rfc.section.A.1">A.1</a>&nbsp;&nbsp;&nbsp;<a href="#changes.since.draft-ietf-httpbis-http2-01">Since draft-ietf-httpbis-http2-01</a></li>
645               <li><a href="#rfc.section.A.2">A.2</a>&nbsp;&nbsp;&nbsp;<a href="#changes.since.draft-ietf-httpbis-http2-00">Since draft-ietf-httpbis-http2-00</a></li>
646               <li><a href="#rfc.section.A.3">A.3</a>&nbsp;&nbsp;&nbsp;<a href="#changes.since.draft-mbelshe-httpbis-spdy-00">Since draft-mbelshe-httpbis-spdy-00</a></li>
647            </ul>
648         </li>
649         <li><a href="#rfc.index">Index</a></li>
650      </ul>
651      <h1 id="rfc.section.1" class="np"><a href="#rfc.section.1">1.</a>&nbsp;<a id="intro" href="#intro">Introduction</a></h1>
652      <p id="rfc.section.1.p.1">HTTP is a wildly successful protocol. <a href="#HTTP-p1">HTTP/1.1 message encapsulation</a> <cite title="Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing" id="rfc.xref.HTTP-p1.1">[HTTP-p1]</cite> is optimized for implementation simplicity and accessibility, not application performance. As such it has several characteristics
653         that have a negative overall effect on application performance.
654      </p>
655      <p id="rfc.section.1.p.2">The HTTP/1.1 encapsulation ensures that only one request can be delivered at a time on a given connection. HTTP/1.1 pipelining,
656         which is not widely deployed, only partially addresses these concerns. Clients that need to make multiple requests therefore
657         use commonly multiple connections to a server or servers in order to reduce the overall latency of those requests.
658      </p>
659      <p id="rfc.section.1.p.3">Furthermore, HTTP/1.1 headers are represented in an inefficient fashion, which, in addition to generating more or larger network
660         packets, can cause the small initial TCP window to fill more quickly than is ideal. This results in excessive latency where
661         multiple requests are made on a new TCP connection.
662      </p>
663      <p id="rfc.section.1.p.4">This document defines an optimized mapping of the HTTP semantics to a TCP connection. This optimization reduces the latency
664         costs of HTTP by allowing parallel requests on the same connection and by using an efficient coding for HTTP headers. Prioritization
665         of requests lets more important requests complete faster, further improving application performance.
666      </p>
667      <p id="rfc.section.1.p.5">HTTP/2.0 applications have an improved impact on network congestion due to the use of fewer TCP connections to achieve the
668         same effect. Fewer TCP connections compete more fairly with other flows. Long-lived connections are also more able to take
669         better advantage of the available network capacity, rather than operating in the slow start phase of TCP.
670      </p>
671      <p id="rfc.section.1.p.6">The HTTP/2.0 encapsulation also enables more efficient processing of messages by providing efficient message framing. Processing
672         of headers in HTTP/2.0 messages is more efficient (for entities that process many messages).
673      </p>
674      <h2 id="rfc.section.1.1"><a href="#rfc.section.1.1">1.1</a>&nbsp;Document Organization
675      </h2>
676      <p id="rfc.section.1.1.p.1">The HTTP/2.0 Specification is split into three parts: starting HTTP/2.0 (<a href="#starting" title="Starting HTTP/2.0">Section&nbsp;2</a>), which covers how a HTTP/2.0 is started; a framing layer (<a href="#FramingLayer" title="HTTP/2.0 Framing Layer">Section&nbsp;3</a>), which multiplexes a TCP connection into independent, length-prefixed frames; and an HTTP layer (<a href="#HTTPLayer" title="HTTP Layering over HTTP/2.0">Section&nbsp;4</a>), which specifies the mechanism for overlaying HTTP request/response pairs on top of the framing layer. While some of the
677         framing layer concepts are isolated from the HTTP layer, building a generic framing layer has not been a goal. The framing
678         layer is tailored to the needs of the HTTP protocol and server push.
679      </p>
680      <h2 id="rfc.section.1.2"><a href="#rfc.section.1.2">1.2</a>&nbsp;Definitions
681      </h2>
682      <p id="rfc.section.1.2.p.1"> </p>
683      <ul class="empty">
684         <li>client: The endpoint initiating the HTTP/2.0 session.</li>
685         <li>connection: A transport-level connection between two endpoints.</li>
686         <li>endpoint: Either the client or server of a connection.</li>
687         <li>frame: A header-prefixed sequence of bytes sent over a HTTP/2.0 session.</li>
688         <li>server: The endpoint which did not initiate the HTTP/2.0 session.</li>
689         <li>session: A synonym for a connection.</li>
690         <li>session error: An error on the HTTP/2.0 session.</li>
691         <li>stream: A bi-directional flow of bytes across a virtual channel within a HTTP/2.0 session.</li>
692         <li>stream error: An error on an individual HTTP/2.0 stream.</li>
693      </ul>
694      <h1 id="rfc.section.2"><a href="#rfc.section.2">2.</a>&nbsp;<a id="starting" href="#starting">Starting HTTP/2.0</a></h1>
695      <p id="rfc.section.2.p.1">Just as HTTP/1.1 does, HTTP/2.0 uses the "http:" and "https:" URI schemes. An HTTP/2.0-capable client is therefore required
696         to discover whether a server (or intermediary) supports HTTP/2.0.
697      </p>
698      <p id="rfc.section.2.p.2">Different discovery mechanisms are defined for "http:" and "https:" URIs. Discovery for "http:" URIs is described in <a href="#discover-http" title="Starting HTTP/2.0 for &#34;http:&#34; URIs">Section&nbsp;2.2</a>; discovery for "https:" URIs is described in <a href="#discover-https" title="Starting HTTP/2.0 for &#34;https:&#34; URIs">Section&nbsp;2.3</a>.
699      </p>
700      <h2 id="rfc.section.2.1"><a href="#rfc.section.2.1">2.1</a>&nbsp;<a id="versioning" href="#versioning">HTTP/2.0 Version Identification</a></h2>
701      <p id="rfc.section.2.1.p.1">HTTP/2.0 is identified using the string "HTTP/2.0". This identification is used in the HTTP/1.1 Upgrade header, in the <a href="#TLSNPN">TLS-NPN</a> <cite title="TLS Next Protocol Negotiation" id="rfc.xref.TLSNPN.1">[TLSNPN]</cite> [[TBD]] field and other places where protocol identification is required.
702      </p>
703      <p id="rfc.section.2.1.p.2">Negotiating "HTTP/2.0" implies the use of the transport, security, framing and message semantics described in this document.</p>
704      <p id="rfc.section.2.1.p.3">[[Editor's Note: please remove the following text prior to the publication of a final version of this document.]]</p>
705      <p id="rfc.section.2.1.p.4">Only implementations of the final, published RFC can identify themselves as "HTTP/2.0". Until such an RFC exists, implementations
706         MUST NOT identify themselves using "HTTP/2.0".
707      </p>
708      <p id="rfc.section.2.1.p.5">Examples and text throughout the rest of this document use "HTTP/2.0" as a matter of editorial convenience only. Implementations
709         of draft versions MUST NOT identify using this string.
710      </p>
711      <p id="rfc.section.2.1.p.6">Implementations of draft versions of the protocol MUST add the corresponding draft number to the identifier before the separator
712         ('/'). For example, draft-ietf-httpbis-http2-03 is identified using the string "HTTP-03/2.0".
713      </p>
714      <p id="rfc.section.2.1.p.7">Non-compatible experiments that are based on these draft versions MUST include a further identifier. For example, an experimental
715         implementation of packet mood-based encoding based on draft-ietf-httpbis-http2-07 might identify itself as "HTTP-07-emo/2.0".
716         Note that any label MUST conform with the "token" syntax defined in Section 3.2.4 of <a href="#HTTP-p1" id="rfc.xref.HTTP-p1.2"><cite title="Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing">[HTTP-p1]</cite></a>. Experimenters are encouraged to coordinate their experiments on the ietf-http-wg@w3.org mailing list.
717      </p>
718      <h2 id="rfc.section.2.2"><a href="#rfc.section.2.2">2.2</a>&nbsp;<a id="discover-http" href="#discover-http">Starting HTTP/2.0 for "http:" URIs</a></h2>
719      <p id="rfc.section.2.2.p.1">A client that makes a request to an "http:" URI without prior knowledge about support for HTTP/2.0 uses the HTTP Upgrade mechanism <a href="#HTTP-p2" id="rfc.xref.HTTP-p2.1"><cite title="Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content">[HTTP-p2]</cite></a>. The client makes an HTTP/1.1 request that includes an Upgrade header field identifying HTTP/2.0.
720      </p>
721      <p id="rfc.section.2.2.p.2">For example:</p>
722      <div id="rfc.figure.u.1"></div><pre>   GET /default.htm HTTP/1.1
723   Host: server.example.com
724   Connection: Upgrade
725   Upgrade: HTTP/2.0
726</pre><p id="rfc.section.2.2.p.4">A server that does not support HTTP/2.0 can respond to the request as though the Upgrade header field were absent:</p>
727      <div id="rfc.figure.u.2"></div><pre>   HTTP/1.1 200 OK
728   Content-length: 243
729   Content-type: text/html
730      ...
731</pre><p id="rfc.section.2.2.p.6">A server that supports HTTP/2.0 can accept the upgrade with a 101 (Switching Protocols) status code. After the empty line
732         that terminates the 101 response, the server can begin sending HTTP/2.0 frames. These frames MUST include a response to the
733         request that initiated the Upgrade.
734      </p>
735      <div id="rfc.figure.u.3"></div><pre>   HTTP/1.1 101 Switching Protocols
736   Connection: Upgrade
737   Upgrade: HTTP/2.0
738
739   [ HTTP/2.0 frames ...
740</pre><p id="rfc.section.2.2.p.8">A client can learn that a particular server supports HTTP/2.0 by other means. A client MAY immediately send HTTP/2.0 frames
741         to a server that is known to support HTTP/2.0. [[Open Issue: This is not definite. We may yet choose to perform negotiation
742         for every connection. Reasons include intermediaries; phased upgrade of load-balanced server farms; etc...]] [[Open Issue:
743         We need to enumerate the ways that clients can learn of HTTP/2.0 support.]]
744      </p>
745      <h2 id="rfc.section.2.3"><a href="#rfc.section.2.3">2.3</a>&nbsp;<a id="discover-https" href="#discover-https">Starting HTTP/2.0 for "https:" URIs</a></h2>
746      <p id="rfc.section.2.3.p.1">[[TBD, maybe NPN]]</p>
747      <h1 id="rfc.section.3"><a href="#rfc.section.3">3.</a>&nbsp;<a id="FramingLayer" href="#FramingLayer">HTTP/2.0 Framing Layer</a></h1>
748      <h2 id="rfc.section.3.1"><a href="#rfc.section.3.1">3.1</a>&nbsp;Session (Connections)
749      </h2>
750      <p id="rfc.section.3.1.p.1">The HTTP/2.0 framing layer (or "session") runs atop a reliable transport layer such as <a href="#RFC0793">TCP</a> <cite title="Transmission Control Protocol" id="rfc.xref.RFC0793.1">[RFC0793]</cite>. The client is the TCP connection initiator. HTTP/2.0 connections are persistent connections.
751      </p>
752      <p id="rfc.section.3.1.p.2">For best performance, it is expected that clients will not close open connections until the user navigates away from all web
753         pages referencing a connection, or until the server closes the connection. Servers are encouraged to leave connections open
754         for as long as possible, but can terminate idle connections if necessary. When either endpoint closes the transport-level
755         connection, it MUST first send a GOAWAY (<a href="#GOAWAY" title="GOAWAY">Section&nbsp;3.6.6</a>) frame so that the endpoints can reliably determine if requests finished before the close.
756      </p>
757      <h2 id="rfc.section.3.2"><a href="#rfc.section.3.2">3.2</a>&nbsp;Framing
758      </h2>
759      <p id="rfc.section.3.2.p.1">Once the connection is established, clients and servers exchange framed messages. There are two types of frames: control frames (<a href="#ControlFrames" title="Control frames">Section&nbsp;3.2.1</a>) and data frames (<a href="#DataFrames" title="Data frames">Section&nbsp;3.2.2</a>). Frames always have a common header which is 8 bytes in length.
760      </p>
761      <p id="rfc.section.3.2.p.2">The first bit is a control bit indicating whether a frame is a control frame or data frame. Control frames carry a frame type,
762         flags, and a length. Data frames contain the stream ID, flags, and the length for the payload carried after the common header.
763         The simple header is designed to make reading and writing of frames easy.
764      </p>
765      <p id="rfc.section.3.2.p.3">All integer values, including length and type, are in network byte order. HTTP/2.0 does not enforce alignment of types in
766         dynamically sized frames.
767      </p>
768      <h3 id="rfc.section.3.2.1"><a href="#rfc.section.3.2.1">3.2.1</a>&nbsp;<a id="ControlFrames" href="#ControlFrames">Control frames</a></h3>
769      <div id="rfc.figure.u.4"></div> <pre>+----------------------------------+
770|C| Unused (15bits) | Type(16bits) |
771+----------------------------------+
772| Flags (8)  |  Length (24 bits)   |
773+----------------------------------+
774|               Data               |
775+----------------------------------+
776  </pre> <p id="rfc.section.3.2.1.p.2">Control bit: The 'C' bit is a single bit indicating if this is a control message. For control frames this value is always
777         1.
778      </p>
779      <p id="rfc.section.3.2.1.p.3">Unused: these 15 bits are unused.</p>
780      <p id="rfc.section.3.2.1.p.4">Type: The type of control frame. See Control Frames for the complete list of control frames.</p>
781      <p id="rfc.section.3.2.1.p.5">Flags: Flags related to this frame. Flags for control frames and data frames are different.</p>
782      <p id="rfc.section.3.2.1.p.6">Length: An unsigned 24-bit value representing the number of bytes after the length field.</p>
783      <p id="rfc.section.3.2.1.p.7">Data: data associated with this control frame. The format and length of this data is controlled by the control frame type.</p>
784      <p id="rfc.section.3.2.1.p.8">Control frame processing requirements: </p>
785      <ul class="empty">
786         <li>Note that full length control frames (16MB) can be large for implementations running on resource-limited hardware. In such
787            cases, implementations MAY limit the maximum length frame supported. However, all implementations MUST be able to receive
788            control frames of at least 8192 octets in length.
789         </li>
790      </ul>
791      <h3 id="rfc.section.3.2.2"><a href="#rfc.section.3.2.2">3.2.2</a>&nbsp;<a id="DataFrames" href="#DataFrames">Data frames</a></h3>
792      <div id="rfc.figure.u.5"></div> <pre>+----------------------------------+
793|C|       Stream-ID (31bits)       |
794+----------------------------------+
795| Flags (8)  |  Length (24 bits)   |
796+----------------------------------+
797|               Data               |
798+----------------------------------+
799  </pre> <p id="rfc.section.3.2.2.p.2">Control bit: For data frames this value is always 0.</p>
800      <p id="rfc.section.3.2.2.p.3">Stream-ID: A 31-bit value identifying the stream.</p>
801      <p id="rfc.section.3.2.2.p.4">Flags: Flags related to this frame. Valid flags are: </p>
802      <ul class="empty">
803         <li>0x01 = FLAG_FIN - signifies that this frame represents the last frame to be transmitted on this stream. See Stream Close (<a href="#StreamClose" title="Stream close">Section&nbsp;3.3.7</a>) below.
804         </li>
805         <li>0x02 = FLAG_COMPRESS - indicates that the data in this frame has been compressed.</li>
806      </ul>
807      <p id="rfc.section.3.2.2.p.5">Length: An unsigned 24-bit value representing the number of bytes after the length field. The total size of a data frame is
808         8 bytes + length. It is valid to have a zero-length data frame.
809      </p>
810      <p id="rfc.section.3.2.2.p.6">Data: The variable-length data payload; the length was defined in the length field.</p>
811      <p id="rfc.section.3.2.2.p.7">Data frame processing requirements: </p>
812      <ul class="empty">
813         <li>If an endpoint receives a data frame for a stream-id which is not open and the endpoint has not sent a GOAWAY (<a href="#GOAWAY" title="GOAWAY">Section&nbsp;3.6.6</a>) frame, it MUST send issue a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with the error code INVALID_STREAM for the stream-id.
814         </li>
815         <li>If the endpoint which created the stream receives a data frame before receiving a SYN_REPLY on that stream, it is a protocol
816            error, and the recipient MUST issue a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with the status code PROTOCOL_ERROR for the stream-id.
817         </li>
818         <li>Implementors note: If an endpoint receives multiple data frames for invalid stream-ids, it MAY close the session.</li>
819         <li>All HTTP/2.0 endpoints MUST accept compressed data frames. Compression of data frames is always done using zlib compression.
820            Each stream initializes and uses its own compression context dedicated to use within that stream. Endpoints are encouraged
821            to use application level compression rather than HTTP/2.0 stream level compression.
822         </li>
823         <li>Each HTTP/2.0 stream sending compressed frames creates its own zlib context for that stream, and these compression contexts
824            MUST be distinct from the compression contexts used with SYN_STREAM/SYN_REPLY/HEADER compression. (Thus, if both endpoints
825            of a stream are compressing data on the stream, there will be two zlib contexts, one for sending and one for receiving).
826         </li>
827      </ul>
828      <h2 id="rfc.section.3.3"><a href="#rfc.section.3.3">3.3</a>&nbsp;Streams
829      </h2>
830      <p id="rfc.section.3.3.p.1">Streams are independent sequences of bi-directional data divided into frames with several properties: </p>
831      <ul class="empty">
832         <li>Streams may be created by either the client or server.</li>
833         <li>Streams optionally carry a set of name/value header pairs.</li>
834         <li>Streams can concurrently send data interleaved with other streams.</li>
835         <li>Streams may be cancelled.</li>
836      </ul>
837      <h3 id="rfc.section.3.3.1"><a href="#rfc.section.3.3.1">3.3.1</a>&nbsp;<a id="StreamFrames" href="#StreamFrames">Stream frames</a></h3>
838      <p id="rfc.section.3.3.1.p.1">HTTP/2.0 defines 3 control frames to manage the lifecycle of a stream: </p>
839      <ul class="empty">
840         <li>SYN_STREAM - Open a new stream</li>
841         <li>SYN_REPLY - Remote acknowledgement of a new, open stream</li>
842         <li>RST_STREAM - Close a stream</li>
843      </ul>
844      <h3 id="rfc.section.3.3.2"><a href="#rfc.section.3.3.2">3.3.2</a>&nbsp;<a id="StreamCreation" href="#StreamCreation">Stream creation</a></h3>
845      <p id="rfc.section.3.3.2.p.1">A stream is created by sending a control frame with the type set to SYN_STREAM (<a href="#SYN_STREAM" title="SYN_STREAM">Section&nbsp;3.6.1</a>). If the server is initiating the stream, the Stream-ID must be even. If the client is initiating the stream, the Stream-ID
846         must be odd. 0 is not a valid Stream-ID. Stream-IDs from each side of the connection must increase monotonically as new streams
847         are created. E.g. Stream 2 may be created after stream 3, but stream 7 must not be created after stream 9. Stream IDs do not
848         wrap: when a client or server cannot create a new stream id without exceeding a 31 bit value, it MUST NOT create a new stream.
849      </p>
850      <p id="rfc.section.3.3.2.p.2">The stream-id MUST increase with each new stream. If an endpoint receives a SYN_STREAM with a stream id which is less than
851         any previously received SYN_STREAM, it MUST issue a session error (<a href="#SessionErrorHandler" title="Session Error Handling">Section&nbsp;3.4.1</a>) with the status PROTOCOL_ERROR.
852      </p>
853      <p id="rfc.section.3.3.2.p.3">It is a protocol error to send two SYN_STREAMs with the same stream-id. If a recipient receives a second SYN_STREAM for the
854         same stream, it MUST issue a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with the status code PROTOCOL_ERROR.
855      </p>
856      <p id="rfc.section.3.3.2.p.4">Upon receipt of a SYN_STREAM, the recipient can reject the stream by sending a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with the error code REFUSED_STREAM. Note, however, that the creating endpoint may have already sent additional frames for
857         that stream which cannot be immediately stopped.
858      </p>
859      <p id="rfc.section.3.3.2.p.5">Once the stream is created, the creator may immediately send HEADERS or DATA frames for that stream, without needing to wait
860         for the recipient to acknowledge.
861      </p>
862      <h4 id="rfc.section.3.3.2.1"><a href="#rfc.section.3.3.2.1">3.3.2.1</a>&nbsp;Unidirectional streams
863      </h4>
864      <p id="rfc.section.3.3.2.1.p.1">When an endpoint creates a stream with the FLAG_UNIDIRECTIONAL flag set, it creates a unidirectional stream which the creating
865         endpoint can use to send frames, but the receiving endpoint cannot. The receiving endpoint is implicitly already in the half-closed (<a href="#StreamHalfClose" title="Stream half-close">Section&nbsp;3.3.6</a>) state.
866      </p>
867      <h4 id="rfc.section.3.3.2.2"><a href="#rfc.section.3.3.2.2">3.3.2.2</a>&nbsp;Bidirectional streams
868      </h4>
869      <p id="rfc.section.3.3.2.2.p.1">SYN_STREAM frames which do not use the FLAG_UNIDIRECTIONAL flag are bidirectional streams. Both endpoints can send data on
870         a bi-directional stream.
871      </p>
872      <h3 id="rfc.section.3.3.3"><a href="#rfc.section.3.3.3">3.3.3</a>&nbsp;<a id="StreamPriority" href="#StreamPriority">Stream priority</a></h3>
873      <p id="rfc.section.3.3.3.p.1">The creator of a stream assigns a priority for that stream. Priority is represented as an integer from 0 to 7. 0 represents
874         the highest priority and 7 represents the lowest priority.
875      </p>
876      <p id="rfc.section.3.3.3.p.2">The sender and recipient SHOULD use best-effort to process streams in the order of highest priority to lowest priority.</p>
877      <h3 id="rfc.section.3.3.4"><a href="#rfc.section.3.3.4">3.3.4</a>&nbsp;Stream headers
878      </h3>
879      <p id="rfc.section.3.3.4.p.1">Streams carry optional sets of name/value pair headers which carry metadata about the stream. After the stream has been created,
880         and as long as the sender is not closed (<a href="#StreamClose" title="Stream close">Section&nbsp;3.3.7</a>) or half-closed (<a href="#StreamHalfClose" title="Stream half-close">Section&nbsp;3.3.6</a>), each side may send HEADERS frame(s) containing the header data. Header data can be sent in multiple HEADERS frames, and
881         HEADERS frames may be interleaved with data frames.
882      </p>
883      <h3 id="rfc.section.3.3.5"><a href="#rfc.section.3.3.5">3.3.5</a>&nbsp;Stream data exchange
884      </h3>
885      <p id="rfc.section.3.3.5.p.1">Once a stream is created, it can be used to send arbitrary amounts of data. Generally this means that a series of data frames
886         will be sent on the stream until a frame containing the FLAG_FIN flag is set. The FLAG_FIN can be set on a SYN_STREAM (<a href="#SYN_STREAM" title="SYN_STREAM">Section&nbsp;3.6.1</a>), SYN_REPLY (<a href="#SYN_REPLY" title="SYN_REPLY">Section&nbsp;3.6.2</a>), HEADERS (<a href="#HEADERS" title="HEADERS">Section&nbsp;3.6.7</a>) or a DATA (<a href="#DataFrames" title="Data frames">Section&nbsp;3.2.2</a>) frame. Once the FLAG_FIN has been sent, the stream is considered to be half-closed.
887      </p>
888      <h3 id="rfc.section.3.3.6"><a href="#rfc.section.3.3.6">3.3.6</a>&nbsp;<a id="StreamHalfClose" href="#StreamHalfClose">Stream half-close</a></h3>
889      <p id="rfc.section.3.3.6.p.1">When one side of the stream sends a frame with the FLAG_FIN flag set, the stream is half-closed from that endpoint. The sender
890         of the FLAG_FIN MUST NOT send further frames on that stream. When both sides have half-closed, the stream is closed.
891      </p>
892      <p id="rfc.section.3.3.6.p.2">If an endpoint receives a data frame after the stream is half-closed from the sender (e.g. the endpoint has already received
893         a prior frame for the stream with the FIN flag set), it MUST send a RST_STREAM to the sender with the status STREAM_ALREADY_CLOSED.
894      </p>
895      <h3 id="rfc.section.3.3.7"><a href="#rfc.section.3.3.7">3.3.7</a>&nbsp;<a id="StreamClose" href="#StreamClose">Stream close</a></h3>
896      <p id="rfc.section.3.3.7.p.1">There are 3 ways that streams can be terminated: </p>
897      <ul class="empty">
898         <li>Normal termination: Normal stream termination occurs when both sender and recipient have half-closed the stream by sending
899            a FLAG_FIN.
900         </li>
901         <li>Abrupt termination: Either the client or server can send a RST_STREAM control frame at any time. A RST_STREAM contains an
902            error code to indicate the reason for failure. When a RST_STREAM is sent from the stream originator, it indicates a failure
903            to complete the stream and that no further data will be sent on the stream. When a RST_STREAM is sent from the stream recipient,
904            the sender, upon receipt, should stop sending any data on the stream. The stream recipient should be aware that there is a
905            race between data already in transit from the sender and the time the RST_STREAM is received. See Stream Error Handling (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>)
906         </li>
907         <li>TCP connection teardown: If the TCP connection is torn down while un-closed streams exist, then the endpoint must assume that
908            the stream was abnormally interrupted and may be incomplete.
909         </li>
910      </ul>
911      <p id="rfc.section.3.3.7.p.2">If an endpoint receives a data frame after the stream is closed, it must send a RST_STREAM to the sender with the status PROTOCOL_ERROR.</p>
912      <h2 id="rfc.section.3.4"><a href="#rfc.section.3.4">3.4</a>&nbsp;Error Handling
913      </h2>
914      <p id="rfc.section.3.4.p.1">The HTTP/2.0 framing layer has only two types of errors, and they are always handled consistently. Any reference in this specification
915         to "issue a session error" refers to <a href="#SessionErrorHandler" title="Session Error Handling">Section&nbsp;3.4.1</a>. Any reference to "issue a stream error" refers to <a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>.
916      </p>
917      <h3 id="rfc.section.3.4.1"><a href="#rfc.section.3.4.1">3.4.1</a>&nbsp;<a id="SessionErrorHandler" href="#SessionErrorHandler">Session Error Handling</a></h3>
918      <p id="rfc.section.3.4.1.p.1">A session error is any error which prevents further processing of the framing layer or which corrupts the session compression
919         state. When a session error occurs, the endpoint encountering the error MUST first send a GOAWAY (<a href="#GOAWAY" title="GOAWAY">Section&nbsp;3.6.6</a>) frame with the stream id of most recently received stream from the remote endpoint, and the error code for why the session
920         is terminating. After sending the GOAWAY frame, the endpoint MUST close the TCP connection.
921      </p>
922      <p id="rfc.section.3.4.1.p.2">Note that the session compression state is dependent upon both endpoints always processing all compressed data. If an endpoint
923         partially processes a frame containing compressed data without updating compression state properly, future control frames
924         which use compression will be always be errored. Implementations SHOULD always try to process compressed data so that errors
925         which could be handled as stream errors do not become session errors.
926      </p>
927      <p id="rfc.section.3.4.1.p.3">Note that because this GOAWAY is sent during a session error case, it is possible that the GOAWAY will not be reliably received
928         by the receiving endpoint. It is a best-effort attempt to communicate with the remote about why the session is going down.
929      </p>
930      <h3 id="rfc.section.3.4.2"><a href="#rfc.section.3.4.2">3.4.2</a>&nbsp;<a id="StreamErrorHandler" href="#StreamErrorHandler">Stream Error Handling</a></h3>
931      <p id="rfc.section.3.4.2.p.1">A stream error is an error related to a specific stream-id which does not affect processing of other streams at the framing
932         layer. Upon a stream error, the endpoint MUST send a RST_STREAM (<a href="#RST_STREAM" title="RST_STREAM">Section&nbsp;3.6.3</a>) frame which contains the stream id of the stream where the error occurred and the error status which caused the error. After
933         sending the RST_STREAM, the stream is closed to the sending endpoint. After sending the RST_STREAM, if the sender receives
934         any frames other than a RST_STREAM for that stream id, it will result in sending additional RST_STREAM frames. An endpoint
935         MUST NOT send a RST_STREAM in response to an RST_STREAM, as doing so would lead to RST_STREAM loops. Sending a RST_STREAM
936         does not cause the HTTP/2.0 session to be closed.
937      </p>
938      <p id="rfc.section.3.4.2.p.2">If an endpoint has multiple RST_STREAM frames to send in succession for the same stream-id and the same error code, it MAY
939         coalesce them into a single RST_STREAM frame. (This can happen if a stream is closed, but the remote sends multiple data frames.
940         There is no reason to send a RST_STREAM for each frame in succession).
941      </p>
942      <h2 id="rfc.section.3.5"><a href="#rfc.section.3.5">3.5</a>&nbsp;<a id="flowcontrol" href="#flowcontrol">Stream Flow Control</a></h2>
943      <p id="rfc.section.3.5.p.1">Multiplexing streams introduces contention for access to the shared TCP connection. Stream contention can result in streams
944         being blocked by other streams. A flow control scheme ensures that streams do not destructively interfere with other streams
945         on the same TCP connection.
946      </p>
947      <h3 id="rfc.section.3.5.1"><a href="#rfc.section.3.5.1">3.5.1</a>&nbsp;<a id="fc-principles" href="#fc-principles">Flow Control Principles</a></h3>
948      <p id="rfc.section.3.5.1.p.1">Experience with TCP congestion control has shown that algorithms can evolve over time to become more sophisticated without
949         requiring protocol changes. TCP congestion control and its evolution is clearly different from HTTP/2.0 flow control, though
950         the evolution of TCP congestion control algorithms shows that a similar approach could be feasible for HTTP/2.0 flow control.
951      </p>
952      <p id="rfc.section.3.5.1.p.2">HTTP/2.0 stream flow control aims to allow for future improvements to flow control algorithms without requiring protocol changes.
953         Flow control in HTTP/2.0 has the following characteristics:
954      </p>
955      <ol>
956         <li>Flow control is hop-by-hop, not end-to-end.</li>
957         <li>Flow control is based on window update messages. Receivers advertise how many octets they are prepared to receive on a stream.
958            This is a credit-based scheme.
959         </li>
960         <li>Flow control is directional with overall control provided by the receiver. A receiver MAY choose to set any window size that
961            it desires for each stream and for the entire connection. A sender MUST respect flow control limits imposed by a receiver.
962            Clients, servers and intermediaries all independently advertise their flow control preferences as a receiver and abide by
963            the flow control limits set by their peer when sending.
964         </li>
965         <li>The initial value for the flow control window is 65536 bytes for both new streams and the overall connection.</li>
966         <li>Flow control only applies to data frames. Control frames do not consume space in the advertised flow control window.</li>
967         <li>Flow control can be disabled by a receiver. A receiver can choose to either disable flow control for a stream or connection
968            by declaring an infinite flow control limit.
969         </li>
970         <li>HTTP/2.0 standardizes only the format of the window update message (<a href="#WINDOW_UPDATE" title="WINDOW_UPDATE">Section&nbsp;3.6.8</a>). This does not stipulate how a receiver decides when to send this message or the value that it sends. Nor does it specify
971            how a sender chooses to send packets. Implementations are able to select any algorithm that suits their needs. An example
972            flow control algorithm is described in <a href="#fc-basic" title="Basic Flow Control Algorithm">Section&nbsp;3.5.2</a>.
973         </li>
974      </ol>
975      <p id="rfc.section.3.5.1.p.3">Implementations are also responsible for managing how requests and responses are sent based on priority; choosing how to avoid
976         head of line blocking for requests; and managing the creation of new streams. Algorithm choices for these could interact with
977         any flow control algorithm.
978      </p>
979      <h3 id="rfc.section.3.5.2"><a href="#rfc.section.3.5.2">3.5.2</a>&nbsp;<a id="fc-basic" href="#fc-basic">Basic Flow Control Algorithm</a></h3>
980      <p id="rfc.section.3.5.2.p.1">This section describes a basic flow control algorithm. This algorithm is provided as an example, implementations can use any
981         algorithm that complies with flow control requirements.
982      </p>
983      <p id="rfc.section.3.5.2.p.2">[[Algorithm TBD]]</p>
984      <h2 id="rfc.section.3.6"><a href="#rfc.section.3.6">3.6</a>&nbsp;Control frame types
985      </h2>
986      <h3 id="rfc.section.3.6.1"><a href="#rfc.section.3.6.1">3.6.1</a>&nbsp;<a id="SYN_STREAM" href="#SYN_STREAM">SYN_STREAM</a></h3>
987      <p id="rfc.section.3.6.1.p.1">The SYN_STREAM control frame allows the sender to asynchronously create a stream between the endpoints. See Stream Creation (<a href="#StreamCreation" title="Stream creation">Section&nbsp;3.3.2</a>)
988      </p>
989      <div id="rfc.figure.u.6"></div> <pre>+------------------------------------+
990|1|    unused     |         1        |
991+------------------------------------+
992|  Flags (8)  |  Length (24 bits)    |
993+------------------------------------+
994|X|           Stream-ID (31bits)     |
995+------------------------------------+
996|X| Associated-To-Stream-ID (31bits) |
997+------------------------------------+
998| Pri|Unused | Slot |                |
999+-------------------+                |
1000| Number of Name/Value pairs (int32) |   &lt;+
1001+------------------------------------+    |
1002|     Length of name (int32)         |    | This section is the
1003+------------------------------------+    | "Name/Value Header
1004|           Name (string)            |    | Block", and is
1005+------------------------------------+    | compressed.
1006|     Length of value  (int32)       |    |
1007+------------------------------------+    |
1008|          Value   (string)          |    |
1009+------------------------------------+    |
1010|           (repeats)                |   &lt;+
1011            </pre> <p id="rfc.section.3.6.1.p.3">Flags: Flags related to this frame. Valid flags are: </p>
1012      <ul class="empty">
1013         <li>0x01 = FLAG_FIN - marks this frame as the last frame to be transmitted on this stream and puts the sender in the half-closed (<a href="#StreamHalfClose" title="Stream half-close">Section&nbsp;3.3.6</a>) state.
1014         </li>
1015         <li>0x02 = FLAG_UNIDIRECTIONAL - a stream created with this flag puts the recipient in the half-closed (<a href="#StreamHalfClose" title="Stream half-close">Section&nbsp;3.3.6</a>) state.
1016         </li>
1017      </ul>
1018      <p id="rfc.section.3.6.1.p.4">Length: The length is the number of bytes which follow the length field in the frame. For SYN_STREAM frames, this is 10 bytes
1019         plus the length of the compressed Name/Value block.
1020      </p>
1021      <p id="rfc.section.3.6.1.p.5">Stream-ID: The 31-bit identifier for this stream. This stream-id will be used in frames which are part of this stream.</p>
1022      <p id="rfc.section.3.6.1.p.6">Associated-To-Stream-ID: The 31-bit identifier for a stream which this stream is associated to. If this stream is independent
1023         of all other streams, it should be 0.
1024      </p>
1025      <p id="rfc.section.3.6.1.p.7">Priority: A 3-bit priority (<a href="#StreamPriority" title="Stream priority">Section&nbsp;3.3.3</a>) field.
1026      </p>
1027      <p id="rfc.section.3.6.1.p.8">Unused: 5 bits of unused space, reserved for future use.</p>
1028      <p id="rfc.section.3.6.1.p.9">Slot: An 8 bit unsigned integer specifying the index in the server's CREDENTIAL vector of the client certificate to be used
1029         for this request. see CREDENTIAL frame (<a href="#CREDENTIAL" title="CREDENTIAL">Section&nbsp;3.6.9</a>). The value 0 means no client certificate should be associated with this stream.
1030      </p>
1031      <p id="rfc.section.3.6.1.p.10">Name/Value Header Block: A set of name/value pairs carried as part of the SYN_STREAM. see Name/Value Header Block (<a href="#HeaderBlock" title="Name/Value Header Block">Section&nbsp;3.6.10</a>).
1032      </p>
1033      <p id="rfc.section.3.6.1.p.11">If an endpoint receives a SYN_STREAM which is larger than the implementation supports, it MAY send a RST_STREAM with error
1034         code FRAME_TOO_LARGE. All implementations MUST support the minimum size limits defined in the Control Frames section (<a href="#ControlFrames" title="Control frames">Section&nbsp;3.2.1</a>).
1035      </p>
1036      <h3 id="rfc.section.3.6.2"><a href="#rfc.section.3.6.2">3.6.2</a>&nbsp;<a id="SYN_REPLY" href="#SYN_REPLY">SYN_REPLY</a></h3>
1037      <p id="rfc.section.3.6.2.p.1">SYN_REPLY indicates the acceptance of a stream creation by the recipient of a SYN_STREAM frame.</p>
1038      <div id="rfc.figure.u.7"></div> <pre>+------------------------------------+
1039|1|    unused     |         2        |
1040+------------------------------------+
1041|  Flags (8)  |  Length (24 bits)    |
1042+------------------------------------+
1043|X|           Stream-ID (31bits)     |
1044+------------------------------------+
1045| Number of Name/Value pairs (int32) |   &lt;+
1046+------------------------------------+    |
1047|     Length of name (int32)         |    | This section is the
1048+------------------------------------+    | "Name/Value Header
1049|           Name (string)            |    | Block", and is
1050+------------------------------------+    | compressed.
1051|     Length of value  (int32)       |    |
1052+------------------------------------+    |
1053|          Value   (string)          |    |
1054+------------------------------------+    |
1055|           (repeats)                |   &lt;+
1056            </pre> <p id="rfc.section.3.6.2.p.3">Flags: Flags related to this frame. Valid flags are: </p>
1057      <ul class="empty">
1058         <li>0x01 = FLAG_FIN - marks this frame as the last frame to be transmitted on this stream and puts the sender in the half-closed (<a href="#StreamHalfClose" title="Stream half-close">Section&nbsp;3.3.6</a>) state.
1059         </li>
1060      </ul>
1061      <p id="rfc.section.3.6.2.p.4">Length: The length is the number of bytes which follow the length field in the frame. For SYN_REPLY frames, this is 4 bytes
1062         plus the length of the compressed Name/Value block.
1063      </p>
1064      <p id="rfc.section.3.6.2.p.5">Stream-ID: The 31-bit identifier for this stream.</p>
1065      <p id="rfc.section.3.6.2.p.6">If an endpoint receives multiple SYN_REPLY frames for the same active stream ID, it MUST issue a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with the error code STREAM_IN_USE.
1066      </p>
1067      <p id="rfc.section.3.6.2.p.7">Name/Value Header Block: A set of name/value pairs carried as part of the SYN_STREAM. see Name/Value Header Block (<a href="#HeaderBlock" title="Name/Value Header Block">Section&nbsp;3.6.10</a>).
1068      </p>
1069      <p id="rfc.section.3.6.2.p.8">If an endpoint receives a SYN_REPLY which is larger than the implementation supports, it MAY send a RST_STREAM with error
1070         code FRAME_TOO_LARGE. All implementations MUST support the minimum size limits defined in the Control Frames section (<a href="#ControlFrames" title="Control frames">Section&nbsp;3.2.1</a>).
1071      </p>
1072      <h3 id="rfc.section.3.6.3"><a href="#rfc.section.3.6.3">3.6.3</a>&nbsp;<a id="RST_STREAM" href="#RST_STREAM">RST_STREAM</a></h3>
1073      <p id="rfc.section.3.6.3.p.1">The RST_STREAM frame allows for abnormal termination of a stream. When sent by the creator of a stream, it indicates the creator
1074         wishes to cancel the stream. When sent by the recipient of a stream, it indicates an error or that the recipient did not want
1075         to accept the stream, so the stream should be closed.
1076      </p>
1077      <div id="rfc.figure.u.8"></div> <pre>+----------------------------------+
1078|1|   unused     |         3       |
1079+----------------------------------+
1080| Flags (8)  |         8           |
1081+----------------------------------+
1082|X|          Stream-ID (31bits)    |
1083+----------------------------------+
1084|          Status code             |
1085+----------------------------------+
1086            </pre> <p id="rfc.section.3.6.3.p.3">Flags: Flags related to this frame. RST_STREAM does not define any flags. This value must be 0.</p>
1087      <p id="rfc.section.3.6.3.p.4">Length: An unsigned 24-bit value representing the number of bytes after the length field. For RST_STREAM control frames, this
1088         value is always 8.
1089      </p>
1090      <p id="rfc.section.3.6.3.p.5">Stream-ID: The 31-bit identifier for this stream.</p>
1091      <p id="rfc.section.3.6.3.p.6">Status code: (32 bits) An indicator for why the stream is being terminated.The following status codes are defined: </p>
1092      <ul class="empty">
1093         <li>1 - PROTOCOL_ERROR. This is a generic error, and should only be used if a more specific error is not available.</li>
1094         <li>2 - INVALID_STREAM. This is returned when a frame is received for a stream which is not active.</li>
1095         <li>3 - REFUSED_STREAM. Indicates that the stream was refused before any processing has been done on the stream.</li>
1096         <li>4 - (UNUSED)</li>
1097         <li>5 - CANCEL. Used by the creator of a stream to indicate that the stream is no longer needed.</li>
1098         <li>6 - INTERNAL_ERROR. This is a generic error which can be used when the implementation has internally failed, not due to anything
1099            in the protocol.
1100         </li>
1101         <li>7 - FLOW_CONTROL_ERROR. The endpoint detected that its peer violated the flow control protocol.</li>
1102         <li>8 - STREAM_IN_USE. The endpoint received a SYN_REPLY for a stream already open.</li>
1103         <li>9 - STREAM_ALREADY_CLOSED. The endpoint received a data or SYN_REPLY frame for a stream which is half closed.</li>
1104         <li>10 - INVALID_CREDENTIALS. The server received a request for a resource whose origin does not have valid credentials in the
1105            client certificate vector.
1106         </li>
1107         <li>11 - FRAME_TOO_LARGE. The endpoint received a frame which this implementation could not support. If FRAME_TOO_LARGE is sent
1108            for a SYN_STREAM, HEADERS, or SYN_REPLY frame without fully processing the compressed portion of those frames, then the compression
1109            state will be out-of-sync with the other endpoint. In this case, senders of FRAME_TOO_LARGE MUST close the session.
1110         </li>
1111         <li>Note: 0 is not a valid status code for a RST_STREAM.</li>
1112      </ul>
1113      <p id="rfc.section.3.6.3.p.7">After receiving a RST_STREAM on a stream, the recipient must not send additional frames for that stream, and the stream moves
1114         into the closed state.
1115      </p>
1116      <h3 id="rfc.section.3.6.4"><a href="#rfc.section.3.6.4">3.6.4</a>&nbsp;<a id="SETTINGS" href="#SETTINGS">SETTINGS</a></h3>
1117      <p id="rfc.section.3.6.4.p.1">A SETTINGS frame contains a set of id/value pairs for communicating configuration data about how the two endpoints may communicate.
1118         SETTINGS frames can be sent at any time by either endpoint, are optionally sent, and are fully asynchronous. When the server
1119         is the sender, the sender can request that configuration data be persisted by the client across HTTP/2.0 sessions and returned
1120         to the server in future communications.
1121      </p>
1122      <p id="rfc.section.3.6.4.p.2">Persistence of SETTINGS ID/Value pairs is done on a per origin/IP pair (the "origin" is the set of scheme, host, and port
1123         from the URI. See <a href="#RFC6454" id="rfc.xref.RFC6454.1"><cite title="The Web Origin Concept">[RFC6454]</cite></a>). That is, when a client connects to a server, and the server persists settings within the client, the client SHOULD return
1124         the persisted settings on future connections to the same origin AND IP address and TCP port. Clients MUST NOT request servers
1125         to use the persistence features of the SETTINGS frames, and servers MUST ignore persistence related flags sent by a client.
1126      </p>
1127      <div id="rfc.figure.u.9"></div> <pre>+----------------------------------+
1128|1|   unused     |         4       |
1129+----------------------------------+
1130| Flags (8)  |  Length (24 bits)   |
1131+----------------------------------+
1132|         Number of entries        |
1133+----------------------------------+
1134|          ID/Value Pairs          |
1135|             ...                  |
1136            </pre> <p id="rfc.section.3.6.4.p.4">Control bit: The control bit is always 1 for this message.</p>
1137      <p id="rfc.section.3.6.4.p.5">Unused</p>
1138      <p id="rfc.section.3.6.4.p.6">Type: The message type for a SETTINGS message is 4.</p>
1139      <p id="rfc.section.3.6.4.p.7">Flags: FLAG_SETTINGS_CLEAR_SETTINGS (0x1): When set, the client should clear any previously persisted SETTINGS ID/Value pairs.
1140         If this frame contains ID/Value pairs with the FLAG_SETTINGS_PERSIST_VALUE set, then the client will first clear its existing,
1141         persisted settings, and then persist the values with the flag set which are contained within this frame. Because persistence
1142         is only implemented on the client, this flag can only be used when the sender is the server.
1143      </p>
1144      <p id="rfc.section.3.6.4.p.8">Length: An unsigned 24-bit value representing the number of bytes after the length field. The total size of a SETTINGS frame
1145         is 8 bytes + length.
1146      </p>
1147      <p id="rfc.section.3.6.4.p.9">Number of entries: A 32-bit value representing the number of ID/value pairs in this message.</p>
1148      <p id="rfc.section.3.6.4.p.10">ID: A 32-bit ID number, comprised of 8 bits of flags and 24 bits of unique ID. </p>
1149      <ul class="empty">
1150         <li>ID.flags:
1151            <ul class="empty">
1152               <li>FLAG_SETTINGS_PERSIST_VALUE (0x1): When set, the sender of this SETTINGS frame is requesting that the recipient persist the
1153                  ID/Value and return it in future SETTINGS frames sent from the sender to this recipient. Because persistence is only implemented
1154                  on the client, this flag is only sent by the server.
1155               </li>
1156               <li>FLAG_SETTINGS_PERSISTED (0x2): When set, the sender is notifying the recipient that this ID/Value pair was previously sent
1157                  to the sender by the recipient with the FLAG_SETTINGS_PERSIST_VALUE, and the sender is returning it. Because persistence is
1158                  only implemented on the client, this flag is only sent by the client.
1159               </li>
1160            </ul>
1161         </li>
1162         <li>Defined IDs:
1163            <ul class="empty">
1164               <li>1 - SETTINGS_UPLOAD_BANDWIDTH allows the sender to send its expected upload bandwidth on this channel. This number is an estimate.
1165                  The value should be the integral number of kilobytes per second that the sender predicts as an expected maximum upload channel
1166                  capacity.
1167               </li>
1168               <li>2 - SETTINGS_DOWNLOAD_BANDWIDTH allows the sender to send its expected download bandwidth on this channel. This number is
1169                  an estimate. The value should be the integral number of kilobytes per second that the sender predicts as an expected maximum
1170                  download channel capacity.
1171               </li>
1172               <li>3 - SETTINGS_ROUND_TRIP_TIME allows the sender to send its expected round-trip-time on this channel. The round trip time is
1173                  defined as the minimum amount of time to send a control frame from this client to the remote and receive a response. The value
1174                  is represented in milliseconds.
1175               </li>
1176               <li>4 - SETTINGS_MAX_CONCURRENT_STREAMS allows the sender to inform the remote endpoint the maximum number of concurrent streams
1177                  which it will allow. By default there is no limit. For implementors it is recommended that this value be no smaller than 100.
1178               </li>
1179               <li>5 - SETTINGS_CURRENT_CWND allows the sender to inform the remote endpoint of the current TCP CWND value.</li>
1180               <li>6 - SETTINGS_DOWNLOAD_RETRANS_RATE allows the sender to inform the remote endpoint the retransmission rate (bytes retransmitted
1181                  / total bytes transmitted).
1182               </li>
1183               <li>7 - SETTINGS_INITIAL_WINDOW_SIZE allows the sender to inform the remote endpoint the initial window size (in bytes) for new
1184                  streams.
1185               </li>
1186               <li>8 - SETTINGS_CLIENT_CERTIFICATE_VECTOR_SIZE allows the server to inform the client of the new size of the client certificate
1187                  vector.
1188               </li>
1189            </ul>
1190         </li>
1191      </ul>
1192      <p id="rfc.section.3.6.4.p.11">Value: A 32-bit value.</p>
1193      <p id="rfc.section.3.6.4.p.12">The message is intentionally extensible for future information which may improve client-server communications. The sender
1194         does not need to send every type of ID/value. It must only send those for which it has accurate values to convey. When multiple
1195         ID/value pairs are sent, they should be sent in order of lowest id to highest id. A single SETTINGS frame MUST not contain
1196         multiple values for the same ID. If the recipient of a SETTINGS frame discovers multiple values for the same ID, it MUST ignore
1197         all values except the first one.
1198      </p>
1199      <p id="rfc.section.3.6.4.p.13">A server may send multiple SETTINGS frames containing different ID/Value pairs. When the same ID/Value is sent twice, the
1200         most recent value overrides any previously sent values. If the server sends IDs 1, 2, and 3 with the FLAG_SETTINGS_PERSIST_VALUE
1201         in a first SETTINGS frame, and then sends IDs 4 and 5 with the FLAG_SETTINGS_PERSIST_VALUE, when the client returns the persisted
1202         state on its next SETTINGS frame, it SHOULD send all 5 settings (1, 2, 3, 4, and 5 in this example) to the server.
1203      </p>
1204      <h3 id="rfc.section.3.6.5"><a href="#rfc.section.3.6.5">3.6.5</a>&nbsp;<a id="PING" href="#PING">PING</a></h3>
1205      <p id="rfc.section.3.6.5.p.1">The PING control frame is a mechanism for measuring a minimal round-trip time from the sender. It can be sent from the client
1206         or the server. Recipients of a PING frame should send an identical frame to the sender as soon as possible (if there is other
1207         pending data waiting to be sent, PING should take highest priority). Each ping sent by a sender should use a unique ID.
1208      </p>
1209      <div id="rfc.figure.u.10"></div> <pre>+----------------------------------+
1210|1|   unused     |         6       |
1211+----------------------------------+
1212| 0 (flags) |     4 (length)       |
1213+----------------------------------|
1214|            32-bit ID             |
1215+----------------------------------+
1216            </pre> <p id="rfc.section.3.6.5.p.3">Control bit: The control bit is always 1 for this message.</p>
1217      <p id="rfc.section.3.6.5.p.4">Unused</p>
1218      <p id="rfc.section.3.6.5.p.5">Type: The message type for a PING message is 6.</p>
1219      <p id="rfc.section.3.6.5.p.6">Length: This frame is always 4 bytes long.</p>
1220      <p id="rfc.section.3.6.5.p.7">ID: A unique ID for this ping, represented as an unsigned 32 bit value. When the client initiates a ping, it must use an odd
1221         numbered ID. When the server initiates a ping, it must use an even numbered ping. Use of odd/even IDs is required in order
1222         to avoid accidental looping on PINGs (where each side initiates an identical PING at the same time).
1223      </p>
1224      <p id="rfc.section.3.6.5.p.8">Note: If a sender uses all possible PING ids (e.g. has sent all 2^31 possible IDs), it can wrap and start re-using IDs.</p>
1225      <p id="rfc.section.3.6.5.p.9">If a server receives an even numbered PING which it did not initiate, it must ignore the PING. If a client receives an odd
1226         numbered PING which it did not initiate, it must ignore the PING.
1227      </p>
1228      <h3 id="rfc.section.3.6.6"><a href="#rfc.section.3.6.6">3.6.6</a>&nbsp;<a id="GOAWAY" href="#GOAWAY">GOAWAY</a></h3>
1229      <p id="rfc.section.3.6.6.p.1">The GOAWAY control frame is a mechanism to tell the remote side of the connection to stop creating streams on this session.
1230         It can be sent from the client or the server. Once sent, the sender will not respond to any new SYN_STREAMs on this session.
1231         Recipients of a GOAWAY frame must not send additional streams on this session, although a new session can be established for
1232         new streams. The purpose of this message is to allow an endpoint to gracefully stop accepting new streams (perhaps for a reboot
1233         or maintenance), while still finishing processing of previously established streams.
1234      </p>
1235      <p id="rfc.section.3.6.6.p.2">There is an inherent race condition between an endpoint sending SYN_STREAMs and the remote sending a GOAWAY message. To deal
1236         with this case, the GOAWAY contains a last-stream-id indicating the stream-id of the last stream which was created on the
1237         sending endpoint in this session. If the receiver of the GOAWAY sent new SYN_STREAMs for sessions after this last-stream-id,
1238         they were not processed by the server and the receiver may treat the stream as though it had never been created at all (hence
1239         the receiver may want to re-create the stream later on a new session).
1240      </p>
1241      <p id="rfc.section.3.6.6.p.3">Endpoints should always send a GOAWAY message before closing a connection so that the remote can know whether a stream has
1242         been partially processed or not. (For example, if an HTTP client sends a POST at the same time that a server closes a connection,
1243         the client cannot know if the server started to process that POST request if the server does not send a GOAWAY frame to indicate
1244         where it stopped working).
1245      </p>
1246      <p id="rfc.section.3.6.6.p.4">After sending a GOAWAY message, the sender must ignore all SYN_STREAM frames for new streams.</p>
1247      <div id="rfc.figure.u.11"></div> <pre>+----------------------------------+
1248|1|   unused     |         7       |
1249+----------------------------------+
1250| 0 (flags) |     8 (length)       |
1251+----------------------------------|
1252|X|  Last-good-stream-ID (31 bits) |
1253+----------------------------------+
1254|          Status code             |
1255+----------------------------------+
1256            </pre> <p id="rfc.section.3.6.6.p.6">Control bit: The control bit is always 1 for this message.</p>
1257      <p id="rfc.section.3.6.6.p.7">Unused</p>
1258      <p id="rfc.section.3.6.6.p.8">Type: The message type for a GOAWAY message is 7.</p>
1259      <p id="rfc.section.3.6.6.p.9">Length: This frame is always 8 bytes long.</p>
1260      <p id="rfc.section.3.6.6.p.10">Last-good-stream-Id: The last stream id which was replied to (with either a SYN_REPLY or RST_STREAM) by the sender of the
1261         GOAWAY message. If no streams were replied to, this value MUST be 0.
1262      </p>
1263      <p id="rfc.section.3.6.6.p.11">Status: The reason for closing the session. </p>
1264      <ul class="empty">
1265         <li>0 - OK. This is a normal session teardown.</li>
1266         <li>1 - PROTOCOL_ERROR. This is a generic error, and should only be used if a more specific error is not available.</li>
1267         <li>2 - INTERNAL_ERROR. This is a generic error which can be used when the implementation has internally failed, not due to anything
1268            in the protocol.
1269         </li>
1270      </ul>
1271      <h3 id="rfc.section.3.6.7"><a href="#rfc.section.3.6.7">3.6.7</a>&nbsp;<a id="HEADERS" href="#HEADERS">HEADERS</a></h3>
1272      <p id="rfc.section.3.6.7.p.1">The HEADERS frame augments a stream with additional headers. It may be optionally sent on an existing stream at any time.
1273         Specific application of the headers in this frame is application-dependent. The name/value header block within this frame
1274         is compressed.
1275      </p>
1276      <div id="rfc.figure.u.12"></div> <pre>+------------------------------------+
1277|1|   unused      |          8       |
1278+------------------------------------+
1279| Flags (8)  |   Length (24 bits)    |
1280+------------------------------------+
1281|X|          Stream-ID (31bits)      |
1282+------------------------------------+
1283| Number of Name/Value pairs (int32) |   &lt;+
1284+------------------------------------+    |
1285|     Length of name (int32)         |    | This section is the
1286+------------------------------------+    | "Name/Value Header
1287|           Name (string)            |    | Block", and is
1288+------------------------------------+    | compressed.
1289|     Length of value  (int32)       |    |
1290+------------------------------------+    |
1291|          Value   (string)          |    |
1292+------------------------------------+    |
1293|           (repeats)                |   &lt;+
1294            </pre> <p id="rfc.section.3.6.7.p.3">Flags: Flags related to this frame. Valid flags are: </p>
1295      <ul class="empty">
1296         <li>0x01 = FLAG_FIN - marks this frame as the last frame to be transmitted on this stream and puts the sender in the half-closed (<a href="#StreamHalfClose" title="Stream half-close">Section&nbsp;3.3.6</a>) state.
1297         </li>
1298      </ul>
1299      <p id="rfc.section.3.6.7.p.4">Length: An unsigned 24 bit value representing the number of bytes after the length field. The minimum length of the length
1300         field is 4 (when the number of name value pairs is 0).
1301      </p>
1302      <p id="rfc.section.3.6.7.p.5">Stream-ID: The stream this HEADERS block is associated with.</p>
1303      <p id="rfc.section.3.6.7.p.6">Name/Value Header Block: A set of name/value pairs carried as part of the SYN_STREAM. see Name/Value Header Block (<a href="#HeaderBlock" title="Name/Value Header Block">Section&nbsp;3.6.10</a>).
1304      </p>
1305      <h3 id="rfc.section.3.6.8"><a href="#rfc.section.3.6.8">3.6.8</a>&nbsp;<a id="WINDOW_UPDATE" href="#WINDOW_UPDATE">WINDOW_UPDATE</a></h3>
1306      <p id="rfc.section.3.6.8.p.1">The WINDOW_UPDATE control frame is used to implement per stream flow control in HTTP/2.0. Flow control in HTTP/2.0 is per
1307         hop, that is, only between the two endpoints of a HTTP/2.0 connection. If there are one or more intermediaries between the
1308         client and the origin server, flow control signals are not explicitly forwarded by the intermediaries. (However, throttling
1309         of data transfer by any recipient may have the effect of indirectly propagating flow control information upstream back to
1310         the original sender.) Flow control only applies to the data portion of data frames. Recipients must buffer all control frames.
1311         If a recipient fails to buffer an entire control frame, it MUST issue a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with the status code FLOW_CONTROL_ERROR for the stream.
1312      </p>
1313      <p id="rfc.section.3.6.8.p.2">Flow control in HTTP/2.0 is implemented by a data transfer window kept by the sender of each stream. The data transfer window
1314         is a simple uint32 that indicates how many bytes of data the sender can transmit. After a stream is created, but before any
1315         data frames have been transmitted, the sender begins with the initial window size. This window size is a measure of the buffering
1316         capability of the recipient. The sender must not send a data frame with data length greater than the transfer window size.
1317         After sending each data frame, the sender decrements its transfer window size by the amount of data transmitted. When the
1318         window size becomes less than or equal to 0, the sender must pause transmitting data frames. At the other end of the stream,
1319         the recipient sends a WINDOW_UPDATE control back to notify the sender that it has consumed some data and freed up buffer space
1320         to receive more data.
1321      </p>
1322      <div id="rfc.figure.u.13"></div> <pre>+----------------------------------+
1323|1|   unused     |         9       |
1324+----------------------------------+
1325| 0 (flags) |     8 (length)       |
1326+----------------------------------+
1327|X|     Stream-ID (31-bits)        |
1328+----------------------------------+
1329|X|  Delta-Window-Size (31-bits)   |
1330+----------------------------------+
1331            </pre> <p id="rfc.section.3.6.8.p.4">Control bit: The control bit is always 1 for this message.</p>
1332      <p id="rfc.section.3.6.8.p.5">Unused</p>
1333      <p id="rfc.section.3.6.8.p.6">Type: The message type for a WINDOW_UPDATE message is 9.</p>
1334      <p id="rfc.section.3.6.8.p.7">Length: The length field is always 8 for this frame (there are 8 bytes after the length field).</p>
1335      <p id="rfc.section.3.6.8.p.8">Stream-ID: The stream ID that this WINDOW_UPDATE control frame is for.</p>
1336      <p id="rfc.section.3.6.8.p.9">Delta-Window-Size: The additional number of bytes that the sender can transmit in addition to existing remaining window size.
1337         The legal range for this field is 1 to 2^31 - 1 (0x7fffffff) bytes.
1338      </p>
1339      <p id="rfc.section.3.6.8.p.10">The window size as kept by the sender must never exceed 2^31 (although it can become negative in one special case). If a sender
1340         receives a WINDOW_UPDATE that causes the its window size to exceed this limit, it must send RST_STREAM with status code FLOW_CONTROL_ERROR
1341         to terminate the stream.
1342      </p>
1343      <p id="rfc.section.3.6.8.p.11">When a HTTP/2.0 connection is first established, the default initial window size for all streams is 64KB. An endpoint can
1344         use the SETTINGS control frame to adjust the initial window size for the connection. That is, its peer can start out using
1345         the 64KB default initial window size when sending data frames before receiving the SETTINGS. Because SETTINGS is asynchronous,
1346         there may be a race condition if the recipient wants to decrease the initial window size, but its peer immediately sends 64KB
1347         on the creation of a new connection, before waiting for the SETTINGS to arrive. This is one case where the window size kept
1348         by the sender will become negative. Once the sender detects this condition, it must stop sending data frames and wait for
1349         the recipient to catch up. The recipient has two choices:
1350      </p>
1351      <ul class="empty">
1352         <li>immediately send RST_STREAM with FLOW_CONTROL_ERROR status code.</li>
1353         <li>allow the head of line blocking (as there is only one stream for the session and the amount of data in flight is bounded by
1354            the default initial window size), and send WINDOW_UPDATE as it consumes data.
1355         </li>
1356      </ul>
1357      <p id="rfc.section.3.6.8.p.12">In the case of option 2, both sides must compute the window size based on the initial window size in the SETTINGS. For example,
1358         if the recipient sets the initial window size to be 16KB, and the sender sends 64KB immediately on connection establishment,
1359         the sender will discover its window size is -48KB on receipt of the SETTINGS. As the recipient consumes the first 16KB, it
1360         must send a WINDOW_UPDATE of 16KB back to the sender. This interaction continues until the sender's window size becomes positive
1361         again, and it can resume transmitting data frames.
1362      </p>
1363      <p id="rfc.section.3.6.8.p.13">After the recipient reads in a data frame with FLAG_FIN that marks the end of the data stream, it should not send WINDOW_UPDATE
1364         frames as it consumes the last data frame. A sender should ignore all the WINDOW_UPDATE frames associated with the stream
1365         after it send the last frame for the stream.
1366      </p>
1367      <p id="rfc.section.3.6.8.p.14">The data frames from the sender and the WINDOW_UPDATE frames from the recipient are completely asynchronous with respect to
1368         each other. This property allows a recipient to aggressively update the window size kept by the sender to prevent the stream
1369         from stalling.
1370      </p>
1371      <h3 id="rfc.section.3.6.9"><a href="#rfc.section.3.6.9">3.6.9</a>&nbsp;<a id="CREDENTIAL" href="#CREDENTIAL">CREDENTIAL</a></h3>
1372      <p id="rfc.section.3.6.9.p.1">The CREDENTIAL control frame is used by the client to send additional client certificates to the server. A HTTP/2.0 client
1373         may decide to send requests for resources from different origins on the same HTTP/2.0 session if it decides that that server
1374         handles both origins. For example if the IP address associated with both hostnames matches and the SSL server certificate
1375         presented in the initial handshake is valid for both hostnames. However, because the SSL connection can contain at most one
1376         client certificate, the client needs a mechanism to send additional client certificates to the server.
1377      </p>
1378      <p id="rfc.section.3.6.9.p.2">The server is required to maintain a vector of client certificates associated with a HTTP/2.0 session. When the client needs
1379         to send a client certificate to the server, it will send a CREDENTIAL frame that specifies the index of the slot in which
1380         to store the certificate as well as proof that the client posesses the corresponding private key. The initial size of this
1381         vector must be 8. If the client provides a client certificate during the first TLS handshake, the contents of this certificate
1382         must be copied into the first slot (index 1) in the CREDENTIAL vector, though it may be overwritten by subsequent CREDENTIAL
1383         frames. The server must exclusively use the CREDENTIAL vector when evaluating the client certificates associated with an origin.
1384         The server may change the size of this vector by sending a SETTINGS frame with the setting SETTINGS_CLIENT_CERTIFICATE_VECTOR_SIZE
1385         value specified. In the event that the new size is smaller than the current size, truncation occurs preserving lower-index
1386         slots as possible.
1387      </p>
1388      <p id="rfc.section.3.6.9.p.3">TLS renegotiation with client authentication is incompatible with HTTP/2.0 given the multiplexed nature of HTTP/2.0. Specifically,
1389         imagine that the client has 2 requests outstanding to the server for two different pages (in different tabs). When the renegotiation
1390         + client certificate request comes in, the browser is unable to determine which resource triggered the client certificate
1391         request, in order to prompt the user accordingly.
1392      </p>
1393      <div id="rfc.figure.u.14"></div> <pre>+----------------------------------+
1394|1|000000000000001|0000000000001011|
1395+----------------------------------+
1396| flags (8)  |  Length (24 bits)   |
1397+----------------------------------+
1398|  Slot (16 bits) |                |
1399+-----------------+                |
1400|      Proof Length (32 bits)      |
1401+----------------------------------+
1402|               Proof              |
1403+----------------------------------+ &lt;+
1404|   Certificate Length (32 bits)   |  |
1405+----------------------------------+  | Repeated until end of frame
1406|            Certificate           |  |
1407+----------------------------------+ &lt;+
1408            </pre> <p id="rfc.section.3.6.9.p.5">Slot: The index in the server's client certificate vector where this certificate should be stored. If there is already a certificate
1409         stored at this index, it will be overwritten. The index is one based, not zero based; zero is an invalid slot index.
1410      </p>
1411      <p id="rfc.section.3.6.9.p.6">Proof: Cryptographic proof that the client has possession of the private key associated with the certificate. The format is
1412         a TLS digitally-signed element (<a href="#RFC5246" id="rfc.xref.RFC5246.1"><cite title="The Transport Layer Security (TLS) Protocol Version 1.2">[RFC5246]</cite></a>, <a href="http://tools.ietf.org/html/rfc5246#section-4.7">Section 4.7</a>). The signature algorithm must be the same as that used in the CertificateVerify message. However, since the MD5+SHA1 signature
1413         type used in TLS 1.0 connections can not be correctly encoded in a digitally-signed element, SHA1 must be used when MD5+SHA1
1414         was used in the SSL connection. The signature is calculated over a 32 byte TLS extractor value (http://tools.ietf.org/html/rfc5705)
1415         with a label of "EXPORTER HTTP/2.0 certificate proof" using the empty string as context. ForRSA certificates the signature
1416         would be a PKCS#1 v1.5 signature. For ECDSA, it would be an ECDSA-Sig-Value (http://tools.ietf.org/html/rfc5480#appendix-A).
1417         For a 1024-bit RSA key, the CREDENTIAL message would be ~500 bytes.
1418      </p>
1419      <p id="rfc.section.3.6.9.p.7">Certificate: The certificate chain, starting with the leaf certificate. Each certificate must be encoded as a 32 bit length,
1420         followed by a DER encoded certificate. The certificate must be of the same type (RSA, ECDSA, etc) as the client certificate
1421         associated with the SSL connection.
1422      </p>
1423      <p id="rfc.section.3.6.9.p.8">If the server receives a request for a resource with unacceptable credential (either missing or invalid), it must reply with
1424         a RST_STREAM frame with the status code INVALID_CREDENTIALS. Upon receipt of a RST_STREAM frame with INVALID_CREDENTIALS,
1425         the client should initiate a new stream directly to the requested origin and resend the request. Note, HTTP/2.0 does not allow
1426         the server to request different client authentication for different resources in the same origin.
1427      </p>
1428      <p id="rfc.section.3.6.9.p.9">If the server receives an invalid CREDENTIAL frame, it MUST respond with a GOAWAY frame and shutdown the session.</p>
1429      <h3 id="rfc.section.3.6.10"><a href="#rfc.section.3.6.10">3.6.10</a>&nbsp;<a id="HeaderBlock" href="#HeaderBlock">Name/Value Header Block</a></h3>
1430      <p id="rfc.section.3.6.10.p.1">The Name/Value Header Block is found in the SYN_STREAM, SYN_REPLY and HEADERS control frames, and shares a common format:</p>
1431      <div id="rfc.figure.u.15"></div> <pre>+------------------------------------+
1432| Number of Name/Value pairs (int32) |
1433+------------------------------------+
1434|     Length of name (int32)         |
1435+------------------------------------+
1436|           Name (string)            |
1437+------------------------------------+
1438|     Length of value  (int32)       |
1439+------------------------------------+
1440|          Value   (string)          |
1441+------------------------------------+
1442|           (repeats)                |
1443            </pre> <p id="rfc.section.3.6.10.p.3">Number of Name/Value pairs: The number of repeating name/value pairs following this field.</p>
1444      <p id="rfc.section.3.6.10.p.4">List of Name/Value pairs: </p>
1445      <ul class="empty">
1446         <li>Length of Name: a 32-bit value containing the number of octets in the name field. Note that in practice, this length must
1447            not exceed 2^24, as that is the maximum size of a HTTP/2.0 frame.
1448         </li>
1449         <li>Name: 0 or more octets, 8-bit sequences of data, excluding 0.</li>
1450         <li>Length of Value: a 32-bit value containing the number of octets in the value field. Note that in practice, this length must
1451            not exceed 2^24, as that is the maximum size of a HTTP/2.0 frame.
1452         </li>
1453         <li>Value: 0 or more octets, 8-bit sequences of data, excluding 0.</li>
1454      </ul>
1455      <p id="rfc.section.3.6.10.p.5">Each header name must have at least one value. Header names are encoded using the <a href="#ASCII">US-ASCII character set</a> <cite title="US-ASCII. Coded Character Set - 7-Bit American Standard Code for Information Interchange. Standard ANSI X3.4-1986, ANSI, 1986." id="rfc.xref.ASCII.1">[ASCII]</cite> and must be all lower case. The length of each name must be greater than zero. A recipient of a zero-length name MUST issue
1456         a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with the status code PROTOCOL_ERROR for the stream-id.
1457      </p>
1458      <p id="rfc.section.3.6.10.p.6">Duplicate header names are not allowed. To send two identically named headers, send a header with two values, where the values
1459         are separated by a single NUL (0) byte. A header value can either be empty (e.g. the length is zero) or it can contain multiple,
1460         NUL-separated values, each with length greater than zero. The value never starts nor ends with a NUL character. Recipients
1461         of illegal value fields MUST issue a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with the status code PROTOCOL_ERROR for the stream-id.
1462      </p>
1463      <h4 id="rfc.section.3.6.10.1"><a href="#rfc.section.3.6.10.1">3.6.10.1</a>&nbsp;<a id="Compression" href="#Compression">Compression</a></h4>
1464      <p id="rfc.section.3.6.10.1.p.1">The Name/Value Header Block is a section of the SYN_STREAM, SYN_REPLY, and HEADERS frames used to carry header meta-data.
1465         This block is always compressed using zlib compression. Within this specification, any reference to 'zlib' is referring to
1466         the <a href="#RFC1950">ZLIB Compressed Data Format Specification Version 3.3 as part of RFC1950.</a> <cite title="ZLIB Compressed Data Format Specification version 3.3" id="rfc.xref.RFC1950.1">[RFC1950]</cite></p>
1467      <p id="rfc.section.3.6.10.1.p.2">For each HEADERS compression instance, the initial state is initialized using the following <a href="#UDELCOMPRESSION">dictionary</a> <cite title="A Methodology to Derive SPDY's Initial Dictionary for Zlib Compression" id="rfc.xref.UDELCOMPRESSION.1">[UDELCOMPRESSION]</cite>:
1468      </p>
1469      <div id="rfc.figure.u.16"></div> <pre class="ccmarker cct"><span>&lt;CODE BEGINS&gt;</span></pre><pre class="text">const unsigned char http2_dictionary_txt[] = {
1470  0x00, 0x00, 0x00, 0x07, 0x6f, 0x70, 0x74, 0x69,  \\ - - - - o p t i
1471  0x6f, 0x6e, 0x73, 0x00, 0x00, 0x00, 0x04, 0x68,  \\ o n s - - - - h
1472  0x65, 0x61, 0x64, 0x00, 0x00, 0x00, 0x04, 0x70,  \\ e a d - - - - p
1473  0x6f, 0x73, 0x74, 0x00, 0x00, 0x00, 0x03, 0x70,  \\ o s t - - - - p
1474  0x75, 0x74, 0x00, 0x00, 0x00, 0x06, 0x64, 0x65,  \\ u t - - - - d e
1475  0x6c, 0x65, 0x74, 0x65, 0x00, 0x00, 0x00, 0x05,  \\ l e t e - - - -
1476  0x74, 0x72, 0x61, 0x63, 0x65, 0x00, 0x00, 0x00,  \\ t r a c e - - -
1477  0x06, 0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x00,  \\ - a c c e p t -
1478  0x00, 0x00, 0x0e, 0x61, 0x63, 0x63, 0x65, 0x70,  \\ - - - a c c e p
1479  0x74, 0x2d, 0x63, 0x68, 0x61, 0x72, 0x73, 0x65,  \\ t - c h a r s e
1480  0x74, 0x00, 0x00, 0x00, 0x0f, 0x61, 0x63, 0x63,  \\ t - - - - a c c
1481  0x65, 0x70, 0x74, 0x2d, 0x65, 0x6e, 0x63, 0x6f,  \\ e p t - e n c o
1482  0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x0f,  \\ d i n g - - - -
1483  0x61, 0x63, 0x63, 0x65, 0x70, 0x74, 0x2d, 0x6c,  \\ a c c e p t - l
1484  0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x00,  \\ a n g u a g e -
1485  0x00, 0x00, 0x0d, 0x61, 0x63, 0x63, 0x65, 0x70,  \\ - - - a c c e p
1486  0x74, 0x2d, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x73,  \\ t - r a n g e s
1487  0x00, 0x00, 0x00, 0x03, 0x61, 0x67, 0x65, 0x00,  \\ - - - - a g e -
1488  0x00, 0x00, 0x05, 0x61, 0x6c, 0x6c, 0x6f, 0x77,  \\ - - - a l l o w
1489  0x00, 0x00, 0x00, 0x0d, 0x61, 0x75, 0x74, 0x68,  \\ - - - - a u t h
1490  0x6f, 0x72, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f,  \\ o r i z a t i o
1491  0x6e, 0x00, 0x00, 0x00, 0x0d, 0x63, 0x61, 0x63,  \\ n - - - - c a c
1492  0x68, 0x65, 0x2d, 0x63, 0x6f, 0x6e, 0x74, 0x72,  \\ h e - c o n t r
1493  0x6f, 0x6c, 0x00, 0x00, 0x00, 0x0a, 0x63, 0x6f,  \\ o l - - - - c o
1494  0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e,  \\ n n e c t i o n
1495  0x00, 0x00, 0x00, 0x0c, 0x63, 0x6f, 0x6e, 0x74,  \\ - - - - c o n t
1496  0x65, 0x6e, 0x74, 0x2d, 0x62, 0x61, 0x73, 0x65,  \\ e n t - b a s e
1497  0x00, 0x00, 0x00, 0x10, 0x63, 0x6f, 0x6e, 0x74,  \\ - - - - c o n t
1498  0x65, 0x6e, 0x74, 0x2d, 0x65, 0x6e, 0x63, 0x6f,  \\ e n t - e n c o
1499  0x64, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x10,  \\ d i n g - - - -
1500  0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d,  \\ c o n t e n t -
1501  0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,  \\ l a n g u a g e
1502  0x00, 0x00, 0x00, 0x0e, 0x63, 0x6f, 0x6e, 0x74,  \\ - - - - c o n t
1503  0x65, 0x6e, 0x74, 0x2d, 0x6c, 0x65, 0x6e, 0x67,  \\ e n t - l e n g
1504  0x74, 0x68, 0x00, 0x00, 0x00, 0x10, 0x63, 0x6f,  \\ t h - - - - c o
1505  0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x6c, 0x6f,  \\ n t e n t - l o
1506  0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00,  \\ c a t i o n - -
1507  0x00, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,  \\ - - c o n t e n
1508  0x74, 0x2d, 0x6d, 0x64, 0x35, 0x00, 0x00, 0x00,  \\ t - m d 5 - - -
1509  0x0d, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,  \\ - c o n t e n t
1510  0x2d, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x00,  \\ - r a n g e - -
1511  0x00, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,  \\ - - c o n t e n
1512  0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x00, 0x00,  \\ t - t y p e - -
1513  0x00, 0x04, 0x64, 0x61, 0x74, 0x65, 0x00, 0x00,  \\ - - d a t e - -
1514  0x00, 0x04, 0x65, 0x74, 0x61, 0x67, 0x00, 0x00,  \\ - - e t a g - -
1515  0x00, 0x06, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74,  \\ - - e x p e c t
1516  0x00, 0x00, 0x00, 0x07, 0x65, 0x78, 0x70, 0x69,  \\ - - - - e x p i
1517  0x72, 0x65, 0x73, 0x00, 0x00, 0x00, 0x04, 0x66,  \\ r e s - - - - f
1518  0x72, 0x6f, 0x6d, 0x00, 0x00, 0x00, 0x04, 0x68,  \\ r o m - - - - h
1519  0x6f, 0x73, 0x74, 0x00, 0x00, 0x00, 0x08, 0x69,  \\ o s t - - - - i
1520  0x66, 0x2d, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x00,  \\ f - m a t c h -
1521  0x00, 0x00, 0x11, 0x69, 0x66, 0x2d, 0x6d, 0x6f,  \\ - - - i f - m o
1522  0x64, 0x69, 0x66, 0x69, 0x65, 0x64, 0x2d, 0x73,  \\ d i f i e d - s
1523  0x69, 0x6e, 0x63, 0x65, 0x00, 0x00, 0x00, 0x0d,  \\ i n c e - - - -
1524  0x69, 0x66, 0x2d, 0x6e, 0x6f, 0x6e, 0x65, 0x2d,  \\ i f - n o n e -
1525  0x6d, 0x61, 0x74, 0x63, 0x68, 0x00, 0x00, 0x00,  \\ m a t c h - - -
1526  0x08, 0x69, 0x66, 0x2d, 0x72, 0x61, 0x6e, 0x67,  \\ - i f - r a n g
1527  0x65, 0x00, 0x00, 0x00, 0x13, 0x69, 0x66, 0x2d,  \\ e - - - - i f -
1528  0x75, 0x6e, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69,  \\ u n m o d i f i
1529  0x65, 0x64, 0x2d, 0x73, 0x69, 0x6e, 0x63, 0x65,  \\ e d - s i n c e
1530  0x00, 0x00, 0x00, 0x0d, 0x6c, 0x61, 0x73, 0x74,  \\ - - - - l a s t
1531  0x2d, 0x6d, 0x6f, 0x64, 0x69, 0x66, 0x69, 0x65,  \\ - m o d i f i e
1532  0x64, 0x00, 0x00, 0x00, 0x08, 0x6c, 0x6f, 0x63,  \\ d - - - - l o c
1533  0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00,  \\ a t i o n - - -
1534  0x0c, 0x6d, 0x61, 0x78, 0x2d, 0x66, 0x6f, 0x72,  \\ - m a x - f o r
1535  0x77, 0x61, 0x72, 0x64, 0x73, 0x00, 0x00, 0x00,  \\ w a r d s - - -
1536  0x06, 0x70, 0x72, 0x61, 0x67, 0x6d, 0x61, 0x00,  \\ - p r a g m a -
1537  0x00, 0x00, 0x12, 0x70, 0x72, 0x6f, 0x78, 0x79,  \\ - - - p r o x y
1538  0x2d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74,  \\ - a u t h e n t
1539  0x69, 0x63, 0x61, 0x74, 0x65, 0x00, 0x00, 0x00,  \\ i c a t e - - -
1540  0x13, 0x70, 0x72, 0x6f, 0x78, 0x79, 0x2d, 0x61,  \\ - p r o x y - a
1541  0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x61,  \\ u t h o r i z a
1542  0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x05,  \\ t i o n - - - -
1543  0x72, 0x61, 0x6e, 0x67, 0x65, 0x00, 0x00, 0x00,  \\ r a n g e - - -
1544  0x07, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72,  \\ - r e f e r e r
1545  0x00, 0x00, 0x00, 0x0b, 0x72, 0x65, 0x74, 0x72,  \\ - - - - r e t r
1546  0x79, 0x2d, 0x61, 0x66, 0x74, 0x65, 0x72, 0x00,  \\ y - a f t e r -
1547  0x00, 0x00, 0x06, 0x73, 0x65, 0x72, 0x76, 0x65,  \\ - - - s e r v e
1548  0x72, 0x00, 0x00, 0x00, 0x02, 0x74, 0x65, 0x00,  \\ r - - - - t e -
1549  0x00, 0x00, 0x07, 0x74, 0x72, 0x61, 0x69, 0x6c,  \\ - - - t r a i l
1550  0x65, 0x72, 0x00, 0x00, 0x00, 0x11, 0x74, 0x72,  \\ e r - - - - t r
1551  0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x2d, 0x65,  \\ a n s f e r - e
1552  0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x00,  \\ n c o d i n g -
1553  0x00, 0x00, 0x07, 0x75, 0x70, 0x67, 0x72, 0x61,  \\ - - - u p g r a
1554  0x64, 0x65, 0x00, 0x00, 0x00, 0x0a, 0x75, 0x73,  \\ d e - - - - u s
1555  0x65, 0x72, 0x2d, 0x61, 0x67, 0x65, 0x6e, 0x74,  \\ e r - a g e n t
1556  0x00, 0x00, 0x00, 0x04, 0x76, 0x61, 0x72, 0x79,  \\ - - - - v a r y
1557  0x00, 0x00, 0x00, 0x03, 0x76, 0x69, 0x61, 0x00,  \\ - - - - v i a -
1558  0x00, 0x00, 0x07, 0x77, 0x61, 0x72, 0x6e, 0x69,  \\ - - - w a r n i
1559  0x6e, 0x67, 0x00, 0x00, 0x00, 0x10, 0x77, 0x77,  \\ n g - - - - w w
1560  0x77, 0x2d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e,  \\ w - a u t h e n
1561  0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x00, 0x00,  \\ t i c a t e - -
1562  0x00, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64,  \\ - - m e t h o d
1563  0x00, 0x00, 0x00, 0x03, 0x67, 0x65, 0x74, 0x00,  \\ - - - - g e t -
1564  0x00, 0x00, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,  \\ - - - s t a t u
1565  0x73, 0x00, 0x00, 0x00, 0x06, 0x32, 0x30, 0x30,  \\ s - - - - 2 0 0
1566  0x20, 0x4f, 0x4b, 0x00, 0x00, 0x00, 0x07, 0x76,  \\ - O K - - - - v
1567  0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x00, 0x00,  \\ e r s i o n - -
1568  0x00, 0x08, 0x48, 0x54, 0x54, 0x50, 0x2f, 0x31,  \\ - - H T T P - 1
1569  0x2e, 0x31, 0x00, 0x00, 0x00, 0x03, 0x75, 0x72,  \\ - 1 - - - - u r
1570  0x6c, 0x00, 0x00, 0x00, 0x06, 0x70, 0x75, 0x62,  \\ l - - - - p u b
1571  0x6c, 0x69, 0x63, 0x00, 0x00, 0x00, 0x0a, 0x73,  \\ l i c - - - - s
1572  0x65, 0x74, 0x2d, 0x63, 0x6f, 0x6f, 0x6b, 0x69,  \\ e t - c o o k i
1573  0x65, 0x00, 0x00, 0x00, 0x0a, 0x6b, 0x65, 0x65,  \\ e - - - - k e e
1574  0x70, 0x2d, 0x61, 0x6c, 0x69, 0x76, 0x65, 0x00,  \\ p - a l i v e -
1575  0x00, 0x00, 0x06, 0x6f, 0x72, 0x69, 0x67, 0x69,  \\ - - - o r i g i
1576  0x6e, 0x31, 0x30, 0x30, 0x31, 0x30, 0x31, 0x32,  \\ n 1 0 0 1 0 1 2
1577  0x30, 0x31, 0x32, 0x30, 0x32, 0x32, 0x30, 0x35,  \\ 0 1 2 0 2 2 0 5
1578  0x32, 0x30, 0x36, 0x33, 0x30, 0x30, 0x33, 0x30,  \\ 2 0 6 3 0 0 3 0
1579  0x32, 0x33, 0x30, 0x33, 0x33, 0x30, 0x34, 0x33,  \\ 2 3 0 3 3 0 4 3
1580  0x30, 0x35, 0x33, 0x30, 0x36, 0x33, 0x30, 0x37,  \\ 0 5 3 0 6 3 0 7
1581  0x34, 0x30, 0x32, 0x34, 0x30, 0x35, 0x34, 0x30,  \\ 4 0 2 4 0 5 4 0
1582  0x36, 0x34, 0x30, 0x37, 0x34, 0x30, 0x38, 0x34,  \\ 6 4 0 7 4 0 8 4
1583  0x30, 0x39, 0x34, 0x31, 0x30, 0x34, 0x31, 0x31,  \\ 0 9 4 1 0 4 1 1
1584  0x34, 0x31, 0x32, 0x34, 0x31, 0x33, 0x34, 0x31,  \\ 4 1 2 4 1 3 4 1
1585  0x34, 0x34, 0x31, 0x35, 0x34, 0x31, 0x36, 0x34,  \\ 4 4 1 5 4 1 6 4
1586  0x31, 0x37, 0x35, 0x30, 0x32, 0x35, 0x30, 0x34,  \\ 1 7 5 0 2 5 0 4
1587  0x35, 0x30, 0x35, 0x32, 0x30, 0x33, 0x20, 0x4e,  \\ 5 0 5 2 0 3 - N
1588  0x6f, 0x6e, 0x2d, 0x41, 0x75, 0x74, 0x68, 0x6f,  \\ o n - A u t h o
1589  0x72, 0x69, 0x74, 0x61, 0x74, 0x69, 0x76, 0x65,  \\ r i t a t i v e
1590  0x20, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,  \\ - I n f o r m a
1591  0x74, 0x69, 0x6f, 0x6e, 0x32, 0x30, 0x34, 0x20,  \\ t i o n 2 0 4 -
1592  0x4e, 0x6f, 0x20, 0x43, 0x6f, 0x6e, 0x74, 0x65,  \\ N o - C o n t e
1593  0x6e, 0x74, 0x33, 0x30, 0x31, 0x20, 0x4d, 0x6f,  \\ n t 3 0 1 - M o
1594  0x76, 0x65, 0x64, 0x20, 0x50, 0x65, 0x72, 0x6d,  \\ v e d - P e r m
1595  0x61, 0x6e, 0x65, 0x6e, 0x74, 0x6c, 0x79, 0x34,  \\ a n e n t l y 4
1596  0x30, 0x30, 0x20, 0x42, 0x61, 0x64, 0x20, 0x52,  \\ 0 0 - B a d - R
1597  0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x34, 0x30,  \\ e q u e s t 4 0
1598  0x31, 0x20, 0x55, 0x6e, 0x61, 0x75, 0x74, 0x68,  \\ 1 - U n a u t h
1599  0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x34, 0x30,  \\ o r i z e d 4 0
1600  0x33, 0x20, 0x46, 0x6f, 0x72, 0x62, 0x69, 0x64,  \\ 3 - F o r b i d
1601  0x64, 0x65, 0x6e, 0x34, 0x30, 0x34, 0x20, 0x4e,  \\ d e n 4 0 4 - N
1602  0x6f, 0x74, 0x20, 0x46, 0x6f, 0x75, 0x6e, 0x64,  \\ o t - F o u n d
1603  0x35, 0x30, 0x30, 0x20, 0x49, 0x6e, 0x74, 0x65,  \\ 5 0 0 - I n t e
1604  0x72, 0x6e, 0x61, 0x6c, 0x20, 0x53, 0x65, 0x72,  \\ r n a l - S e r
1605  0x76, 0x65, 0x72, 0x20, 0x45, 0x72, 0x72, 0x6f,  \\ v e r - E r r o
1606  0x72, 0x35, 0x30, 0x31, 0x20, 0x4e, 0x6f, 0x74,  \\ r 5 0 1 - N o t
1607  0x20, 0x49, 0x6d, 0x70, 0x6c, 0x65, 0x6d, 0x65,  \\ - I m p l e m e
1608  0x6e, 0x74, 0x65, 0x64, 0x35, 0x30, 0x33, 0x20,  \\ n t e d 5 0 3 -
1609  0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x20,  \\ S e r v i c e -
1610  0x55, 0x6e, 0x61, 0x76, 0x61, 0x69, 0x6c, 0x61,  \\ U n a v a i l a
1611  0x62, 0x6c, 0x65, 0x4a, 0x61, 0x6e, 0x20, 0x46,  \\ b l e J a n - F
1612  0x65, 0x62, 0x20, 0x4d, 0x61, 0x72, 0x20, 0x41,  \\ e b - M a r - A
1613  0x70, 0x72, 0x20, 0x4d, 0x61, 0x79, 0x20, 0x4a,  \\ p r - M a y - J
1614  0x75, 0x6e, 0x20, 0x4a, 0x75, 0x6c, 0x20, 0x41,  \\ u n - J u l - A
1615  0x75, 0x67, 0x20, 0x53, 0x65, 0x70, 0x74, 0x20,  \\ u g - S e p t -
1616  0x4f, 0x63, 0x74, 0x20, 0x4e, 0x6f, 0x76, 0x20,  \\ O c t - N o v -
1617  0x44, 0x65, 0x63, 0x20, 0x30, 0x30, 0x3a, 0x30,  \\ D e c - 0 0 - 0
1618  0x30, 0x3a, 0x30, 0x30, 0x20, 0x4d, 0x6f, 0x6e,  \\ 0 - 0 0 - M o n
1619  0x2c, 0x20, 0x54, 0x75, 0x65, 0x2c, 0x20, 0x57,  \\ - - T u e - - W
1620  0x65, 0x64, 0x2c, 0x20, 0x54, 0x68, 0x75, 0x2c,  \\ e d - - T h u -
1621  0x20, 0x46, 0x72, 0x69, 0x2c, 0x20, 0x53, 0x61,  \\ - F r i - - S a
1622  0x74, 0x2c, 0x20, 0x53, 0x75, 0x6e, 0x2c, 0x20,  \\ t - - S u n - -
1623  0x47, 0x4d, 0x54, 0x63, 0x68, 0x75, 0x6e, 0x6b,  \\ G M T c h u n k
1624  0x65, 0x64, 0x2c, 0x74, 0x65, 0x78, 0x74, 0x2f,  \\ e d - t e x t -
1625  0x68, 0x74, 0x6d, 0x6c, 0x2c, 0x69, 0x6d, 0x61,  \\ h t m l - i m a
1626  0x67, 0x65, 0x2f, 0x70, 0x6e, 0x67, 0x2c, 0x69,  \\ g e - p n g - i
1627  0x6d, 0x61, 0x67, 0x65, 0x2f, 0x6a, 0x70, 0x67,  \\ m a g e - j p g
1628  0x2c, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x2f, 0x67,  \\ - i m a g e - g
1629  0x69, 0x66, 0x2c, 0x61, 0x70, 0x70, 0x6c, 0x69,  \\ i f - a p p l i
1630  0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x78,  \\ c a t i o n - x
1631  0x6d, 0x6c, 0x2c, 0x61, 0x70, 0x70, 0x6c, 0x69,  \\ m l - a p p l i
1632  0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x78,  \\ c a t i o n - x
1633  0x68, 0x74, 0x6d, 0x6c, 0x2b, 0x78, 0x6d, 0x6c,  \\ h t m l - x m l
1634  0x2c, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x70, 0x6c,  \\ - t e x t - p l
1635  0x61, 0x69, 0x6e, 0x2c, 0x74, 0x65, 0x78, 0x74,  \\ a i n - t e x t
1636  0x2f, 0x6a, 0x61, 0x76, 0x61, 0x73, 0x63, 0x72,  \\ - j a v a s c r
1637  0x69, 0x70, 0x74, 0x2c, 0x70, 0x75, 0x62, 0x6c,  \\ i p t - p u b l
1638  0x69, 0x63, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74,  \\ i c p r i v a t
1639  0x65, 0x6d, 0x61, 0x78, 0x2d, 0x61, 0x67, 0x65,  \\ e m a x - a g e
1640  0x3d, 0x67, 0x7a, 0x69, 0x70, 0x2c, 0x64, 0x65,  \\ - g z i p - d e
1641  0x66, 0x6c, 0x61, 0x74, 0x65, 0x2c, 0x73, 0x64,  \\ f l a t e - s d
1642  0x63, 0x68, 0x63, 0x68, 0x61, 0x72, 0x73, 0x65,  \\ c h c h a r s e
1643  0x74, 0x3d, 0x75, 0x74, 0x66, 0x2d, 0x38, 0x63,  \\ t - u t f - 8 c
1644  0x68, 0x61, 0x72, 0x73, 0x65, 0x74, 0x3d, 0x69,  \\ h a r s e t - i
1645  0x73, 0x6f, 0x2d, 0x38, 0x38, 0x35, 0x39, 0x2d,  \\ s o - 8 8 5 9 -
1646  0x31, 0x2c, 0x75, 0x74, 0x66, 0x2d, 0x2c, 0x2a,  \\ 1 - u t f - - -
1647  0x2c, 0x65, 0x6e, 0x71, 0x3d, 0x30, 0x2e         \\ - e n q - 0 -
1648};
1649</pre><pre class="ccmarker ccb"><span>&lt;CODE ENDS&gt;</span></pre> <p id="rfc.section.3.6.10.1.p.4">The entire contents of the name/value header block is compressed using zlib. There is a single zlib stream for all name value
1650         pairs in one direction on a connection. HTTP/2.0 uses a SYNC_FLUSH between each compressed frame.
1651      </p>
1652      <p id="rfc.section.3.6.10.1.p.5">Implementation notes: the compression engine can be tuned to favor speed or size. Optimizing for size increases memory use
1653         and CPU consumption. Because header blocks are generally small, implementors may want to reduce the window-size of the compression
1654         engine from the default 15bits (a 32KB window) to more like 11bits (a 2KB window). The exact setting is chosen by the compressor,
1655         the decompressor will work with any setting.
1656      </p>
1657      <h1 id="rfc.section.4"><a href="#rfc.section.4">4.</a>&nbsp;<a id="HTTPLayer" href="#HTTPLayer">HTTP Layering over HTTP/2.0</a></h1>
1658      <p id="rfc.section.4.p.1">HTTP/2.0 is intended to be as compatible as possible with current web-based applications. This means that, from the perspective
1659         of the server business logic or application API, the features of HTTP are unchanged. To achieve this, all of the application
1660         request and response header semantics are preserved, although the syntax of conveying those semantics has changed. Thus, the
1661         rules from the <a href="#RFC2616">HTTP/1.1 specification in RFC2616</a> <cite title="Hypertext Transfer Protocol -- HTTP/1.1" id="rfc.xref.RFC2616.1">[RFC2616]</cite> apply with the changes in the sections below.
1662      </p>
1663      <h2 id="rfc.section.4.1"><a href="#rfc.section.4.1">4.1</a>&nbsp;Connection Management
1664      </h2>
1665      <p id="rfc.section.4.1.p.1">Clients SHOULD NOT open more than one HTTP/2.0 session to a given <a href="#RFC6454">origin</a> <cite title="The Web Origin Concept" id="rfc.xref.RFC6454.2">[RFC6454]</cite> concurrently.
1666      </p>
1667      <p id="rfc.section.4.1.p.2">Note that it is possible for one HTTP/2.0 session to be finishing (e.g. a GOAWAY message has been sent, but not all streams
1668         have finished), while another HTTP/2.0 session is starting.
1669      </p>
1670      <h3 id="rfc.section.4.1.1"><a href="#rfc.section.4.1.1">4.1.1</a>&nbsp;Use of GOAWAY
1671      </h3>
1672      <p id="rfc.section.4.1.1.p.1">HTTP/2.0 provides a GOAWAY message which can be used when closing a connection from either the client or server. Without a
1673         server GOAWAY message, HTTP has a race condition where the client sends a request (a new SYN_STREAM) just as the server is
1674         closing the connection, and the client cannot know if the server received the stream or not. By using the last-stream-id in
1675         the GOAWAY, servers can indicate to the client if a request was processed or not.
1676      </p>
1677      <p id="rfc.section.4.1.1.p.2">Note that some servers will choose to send the GOAWAY and immediately terminate the connection without waiting for active
1678         streams to finish. The client will be able to determine this because HTTP/2.0 streams are determinstically closed. This abrupt
1679         termination will force the client to heuristically decide whether to retry the pending requests. Clients always need to be
1680         capable of dealing with this case because they must deal with accidental connection termination cases, which are the same
1681         as the server never having sent a GOAWAY.
1682      </p>
1683      <p id="rfc.section.4.1.1.p.3">More sophisticated servers will use GOAWAY to implement a graceful teardown. They will send the GOAWAY and provide some time
1684         for the active streams to finish before terminating the connection.
1685      </p>
1686      <p id="rfc.section.4.1.1.p.4">If a HTTP/2.0 client closes the connection, it should also send a GOAWAY message. This allows the server to know if any server-push
1687         streams were received by the client.
1688      </p>
1689      <p id="rfc.section.4.1.1.p.5">If the endpoint closing the connection has not received any SYN_STREAMs from the remote, the GOAWAY will contain a last-stream-id
1690         of 0.
1691      </p>
1692      <h2 id="rfc.section.4.2"><a href="#rfc.section.4.2">4.2</a>&nbsp;HTTP Request/Response
1693      </h2>
1694      <h3 id="rfc.section.4.2.1"><a href="#rfc.section.4.2.1">4.2.1</a>&nbsp;Request
1695      </h3>
1696      <p id="rfc.section.4.2.1.p.1">The client initiates a request by sending a SYN_STREAM frame. For requests which do not contain a body, the SYN_STREAM frame
1697         MUST set the FLAG_FIN, indicating that the client intends to send no further data on this stream. For requests which do contain
1698         a body, the SYN_STREAM will not contain the FLAG_FIN, and the body will follow the SYN_STREAM in a series of DATA frames.
1699         The last DATA frame will set the FLAG_FIN to indicate the end of the body.
1700      </p>
1701      <p id="rfc.section.4.2.1.p.2">The SYN_STREAM Name/Value section will contain all of the HTTP headers which are associated with an HTTP request. The header
1702         block in HTTP/2.0 is mostly unchanged from today's HTTP header block, with the following differences:
1703      </p>
1704      <ul class="empty">
1705         <li>The first line of the request is unfolded into name/value pairs like other HTTP headers and MUST be present:
1706            <ul class="empty">
1707               <li>":method" - the HTTP method for this request (e.g. "GET", "POST", "HEAD", etc)</li>
1708               <li>":path" - the url-path for this url with "/" prefixed. (See <a href="#RFC1738">RFC1738</a> <cite title="Uniform Resource Locators (URL)" id="rfc.xref.RFC1738.1">[RFC1738]</cite>). For example, for "http://www.google.com/search?q=dogs" the path would be "/search?q=dogs".
1709               </li>
1710               <li>":version" - the HTTP version of this request (e.g. "HTTP/1.1")</li>
1711            </ul>
1712         </li>
1713         <li>In addition, the following two name/value pairs must also be present in every request:
1714            <ul class="empty">
1715               <li>":host" - the hostport (See <a href="#RFC1738">RFC1738</a> <cite title="Uniform Resource Locators (URL)" id="rfc.xref.RFC1738.2">[RFC1738]</cite>) portion of the URL for this request (e.g. "www.google.com:1234"). This header is the same as the HTTP 'Host' header.
1716               </li>
1717               <li>":scheme" - the scheme portion of the URL for this request (e.g. "https"))</li>
1718            </ul>
1719         </li>
1720         <li>Header names are all lowercase.</li>
1721         <li>The Connection, Host, Keep-Alive, Proxy-Connection, and Transfer-Encoding headers are not valid and MUST not be sent.</li>
1722         <li>User-agents MUST support gzip compression. Regardless of the Accept-Encoding sent by the user-agent, the server may always
1723            send content encoded with gzip or deflate encoding.
1724         </li>
1725         <li>If a server receives a request where the sum of the data frame payload lengths does not equal the size of the Content-Length
1726            header, the server MUST return a 400 (Bad Request) error.
1727         </li>
1728         <li>POST-specific changes:
1729            <ul class="empty">
1730               <li>Although POSTs are inherently chunked, POST requests SHOULD also be accompanied by a Content-Length header. There are two
1731                  reasons for this: First, it assists with upload progress meters for an improved user experience. More importantly, failure
1732                  to send a Content-Length header is incompatible with many existing HTTP server implementations. Existing user agents do not
1733                  omit the Content-Length header, and server implementations have come to depend upon this.
1734               </li>
1735            </ul>
1736         </li>
1737      </ul>
1738      <p id="rfc.section.4.2.1.p.3">The user-agent is free to prioritize requests as it sees fit. If the user-agent cannot make progress without receiving a resource,
1739         it should attempt to raise the priority of that resource. Resources such as images, SHOULD generally use the lowest priority.
1740      </p>
1741      <p id="rfc.section.4.2.1.p.4">If a client sends a SYN_STREAM without all of the method, host, path, scheme, and version headers, the server MUST reply with
1742         a HTTP 400 Bad Request reply.
1743      </p>
1744      <h3 id="rfc.section.4.2.2"><a href="#rfc.section.4.2.2">4.2.2</a>&nbsp;Response
1745      </h3>
1746      <p id="rfc.section.4.2.2.p.1">The server responds to a client request with a SYN_REPLY frame. Symmetric to the client's upload stream, server will send
1747         data after the SYN_REPLY frame via a series of DATA frames, and the last data frame will contain the FLAG_FIN to indicate
1748         successful end-of-stream. If a response (like a 202 or 204 response) contains no body, the SYN_REPLY frame may contain the
1749         FLAG_FIN flag to indicate no further data will be sent on the stream.
1750      </p>
1751      <p id="rfc.section.4.2.2.p.2"> </p>
1752      <ul class="empty">
1753         <li>The response status line is unfolded into name/value pairs like other HTTP headers and must be present:
1754            <ul class="empty">
1755               <li>":status" - The HTTP response status code (e.g. "200" or "200 OK")</li>
1756               <li>":version" - The HTTP response version (e.g. "HTTP/1.1")</li>
1757            </ul>
1758         </li>
1759         <li>All header names must be lowercase.</li>
1760         <li>The Connection, Keep-Alive, Proxy-Connection, and Transfer-Encoding headers are not valid and MUST not be sent.</li>
1761         <li>Responses MAY be accompanied by a Content-Length header for advisory purposes. (e.g. for UI progress meters)</li>
1762         <li>If a client receives a response where the sum of the data frame payload lengths does not equal the size of the Content-Length
1763            header, the client MUST ignore the content length header.
1764         </li>
1765      </ul>
1766      <p id="rfc.section.4.2.2.p.3">If a client receives a SYN_REPLY without a status or without a version header, the client must reply with a RST_STREAM frame
1767         indicating a PROTOCOL ERROR.
1768      </p>
1769      <h3 id="rfc.section.4.2.3"><a href="#rfc.section.4.2.3">4.2.3</a>&nbsp;<a id="Authentication" href="#Authentication">Authentication</a></h3>
1770      <p id="rfc.section.4.2.3.p.1">When a client sends a request to an origin server that requires authentication, the server can reply with a "401 Unauthorized"
1771         response, and include a WWW-Authenticate challenge header that defines the authentication scheme to be used. The client then
1772         retries the request with an Authorization header appropriate to the specified authentication scheme.
1773      </p>
1774      <p id="rfc.section.4.2.3.p.2">There are four options for proxy authentication, Basic, Digest, NTLM and Negotiate (SPNEGO). The first two options were defined
1775         in <a href="#RFC2617">RFC2617</a> <cite title="HTTP Authentication: Basic and Digest Access Authentication" id="rfc.xref.RFC2617.1">[RFC2617]</cite>, and are stateless. The second two options were developed by Microsoft and specified in <a href="#RFC4559">RFC4559</a> <cite title="SPNEGO-based Kerberos and NTLM HTTP Authentication in Microsoft Windows" id="rfc.xref.RFC4559.1">[RFC4559]</cite>, and are stateful; otherwise known as multi-round authentication, or connection authentication.
1776      </p>
1777      <h4 id="rfc.section.4.2.3.1"><a href="#rfc.section.4.2.3.1">4.2.3.1</a>&nbsp;Stateless Authentication
1778      </h4>
1779      <p id="rfc.section.4.2.3.1.p.1">Stateless Authentication over HTTP/2.0 is identical to how it is performed over HTTP. If multiple HTTP/2.0 streams are concurrently
1780         sent to a single server, each will authenticate independently, similar to how two HTTP connections would independently authenticate
1781         to a proxy server.
1782      </p>
1783      <h4 id="rfc.section.4.2.3.2"><a href="#rfc.section.4.2.3.2">4.2.3.2</a>&nbsp;Stateful Authentication
1784      </h4>
1785      <p id="rfc.section.4.2.3.2.p.1">Unfortunately, the stateful authentication mechanisms were implemented and defined in a such a way that directly violates
1786         RFC2617 - they do not include a "realm" as part of the request. This is problematic in HTTP/2.0 because it makes it impossible
1787         for a client to disambiguate two concurrent server authentication challenges.
1788      </p>
1789      <p id="rfc.section.4.2.3.2.p.2">To deal with this case, HTTP/2.0 servers using Stateful Authentication MUST implement one of two changes: </p>
1790      <ul class="empty">
1791         <li>Servers can add a "realm=&lt;desired realm&gt;" header so that the two authentication requests can be disambiguated and run concurrently.
1792            Unfortunately, given how these mechanisms work, this is probably not practical.
1793         </li>
1794         <li>Upon sending the first stateful challenge response, the server MUST buffer and defer all further frames which are not part
1795            of completing the challenge until the challenge has completed. Completing the authentication challenge may take multiple round
1796            trips. Once the client receives a "401 Authenticate" response for a stateful authentication type, it MUST stop sending new
1797            requests to the server until the authentication has completed by receiving a non-401 response on at least one stream.
1798         </li>
1799      </ul>
1800      <h2 id="rfc.section.4.3"><a href="#rfc.section.4.3">4.3</a>&nbsp;Server Push Transactions
1801      </h2>
1802      <p id="rfc.section.4.3.p.1">HTTP/2.0 enables a server to send multiple replies to a client for a single request. The rationale for this feature is that
1803         sometimes a server knows that it will need to send multiple resources in response to a single request. Without server push
1804         features, the client must first download the primary resource, then discover the secondary resource(s), and request them.
1805         Pushing of resources avoids the round-trip delay, but also creates a potential race where a server can be pushing content
1806         which a user-agent is in the process of requesting. The following mechanics attempt to prevent the race condition while enabling
1807         the performance benefit.
1808      </p>
1809      <p id="rfc.section.4.3.p.2">Browsers receiving a pushed response MUST validate that the server is authorized to push the URL using the <a href="#RFC6454">browser same-origin</a> <cite title="The Web Origin Concept" id="rfc.xref.RFC6454.3">[RFC6454]</cite> policy. For example, a HTTP/2.0 connection to www.foo.com is generally not permitted to push a response for www.evil.com.
1810      </p>
1811      <p id="rfc.section.4.3.p.3">If the browser accepts a pushed response (e.g. it does not send a RST_STREAM), the browser MUST attempt to cache the pushed
1812         response in same way that it would cache any other response. This means validating the response headers and inserting into
1813         the disk cache.
1814      </p>
1815      <p id="rfc.section.4.3.p.4">Because pushed responses have no request, they have no request headers associated with them. At the framing layer, HTTP/2.0
1816         pushed streams contain an "associated-stream-id" which indicates the requested stream for which the pushed stream is related.
1817         The pushed stream inherits all of the headers from the associated-stream-id with the exception of ":host", ":scheme", and
1818         ":path", which are provided as part of the pushed response stream headers. The browser MUST store these inherited and implied
1819         request headers with the cached resource.
1820      </p>
1821      <p id="rfc.section.4.3.p.5">Implementation note: With server push, it is theoretically possible for servers to push unreasonable amounts of content or
1822         resources to the user-agent. Browsers MUST implement throttles to protect against unreasonable push attacks.
1823      </p>
1824      <h3 id="rfc.section.4.3.1"><a href="#rfc.section.4.3.1">4.3.1</a>&nbsp;Server implementation
1825      </h3>
1826      <p id="rfc.section.4.3.1.p.1">When the server intends to push a resource to the user-agent, it opens a new stream by sending a unidirectional SYN_STREAM.
1827         The SYN_STREAM MUST include an Associated-To-Stream-ID, and MUST set the FLAG_UNIDIRECTIONAL flag. The SYN_STREAM MUST include
1828         headers for ":scheme", ":host", ":path", which represent the URL for the resource being pushed. Subsequent headers may follow
1829         in HEADERS frames. The purpose of the association is so that the user-agent can differentiate which request induced the pushed
1830         stream; without it, if the user-agent had two tabs open to the same page, each pushing unique content under a fixed URL, the
1831         user-agent would not be able to differentiate the requests.
1832      </p>
1833      <p id="rfc.section.4.3.1.p.2">The Associated-To-Stream-ID must be the ID of an existing, open stream. The reason for this restriction is to have a clear
1834         endpoint for pushed content. If the user-agent requested a resource on stream 11, the server replies on stream 11. It can
1835         push any number of additional streams to the client before sending a FLAG_FIN on stream 11. However, once the originating
1836         stream is closed no further push streams may be associated with it. The pushed streams do not need to be closed (FIN set)
1837         before the originating stream is closed, they only need to be created before the originating stream closes.
1838      </p>
1839      <p id="rfc.section.4.3.1.p.3">It is illegal for a server to push a resource with the Associated-To-Stream-ID of 0.</p>
1840      <p id="rfc.section.4.3.1.p.4">To minimize race conditions with the client, the SYN_STREAM for the pushed resources MUST be sent prior to sending any content
1841         which could allow the client to discover the pushed resource and request it.
1842      </p>
1843      <p id="rfc.section.4.3.1.p.5">The server MUST only push resources which would have been returned from a GET request.</p>
1844      <p id="rfc.section.4.3.1.p.6">Note: If the server does not have all of the Name/Value Response headers available at the time it issues the HEADERS frame
1845         for the pushed resource, it may later use an additional HEADERS frame to augment the name/value pairs to be associated with
1846         the pushed stream. The subsequent HEADERS frame(s) must not contain a header for ':host', ':scheme', or ':path' (e.g. the
1847         server can't change the identity of the resource to be pushed). The HEADERS frame must not contain duplicate headers with
1848         a previously sent HEADERS frame. The server must send a HEADERS frame including the scheme/host/port headers before sending
1849         any data frames on the stream.
1850      </p>
1851      <h3 id="rfc.section.4.3.2"><a href="#rfc.section.4.3.2">4.3.2</a>&nbsp;Client implementation
1852      </h3>
1853      <p id="rfc.section.4.3.2.p.1">When fetching a resource the client has 3 possibilities: </p>
1854      <ul class="empty">
1855         <li>the resource is not being pushed</li>
1856         <li>the resource is being pushed, but the data has not yet arrived</li>
1857         <li>the resource is being pushed, and the data has started to arrive</li>
1858      </ul>
1859      <p id="rfc.section.4.3.2.p.2">When a SYN_STREAM and HEADERS frame which contains an Associated-To-Stream-ID is received, the client must not issue GET requests
1860         for the resource in the pushed stream, and instead wait for the pushed stream to arrive.
1861      </p>
1862      <p id="rfc.section.4.3.2.p.3">If a client receives a server push stream with stream-id 0, it MUST issue a session error (<a href="#SessionErrorHandler" title="Session Error Handling">Section&nbsp;3.4.1</a>) with the status code PROTOCOL_ERROR.
1863      </p>
1864      <p id="rfc.section.4.3.2.p.4">When a client receives a SYN_STREAM from the server without a the ':host', ':scheme', and ':path' headers in the Name/Value
1865         section, it MUST reply with a RST_STREAM with error code HTTP_PROTOCOL_ERROR.
1866      </p>
1867      <p id="rfc.section.4.3.2.p.5">To cancel individual server push streams, the client can issue a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with error code CANCEL. Upon receipt, the server MUST stop sending on this stream immediately (this is an Abrupt termination).
1868      </p>
1869      <p id="rfc.section.4.3.2.p.6">To cancel all server push streams related to a request, the client may issue a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with error code CANCEL on the associated-stream-id. By cancelling that stream, the server MUST immediately stop sending frames
1870         for any streams with in-association-to for the original stream.
1871      </p>
1872      <p id="rfc.section.4.3.2.p.7">If the server sends a HEADER frame containing duplicate headers with a previous HEADERS frame for the same stream, the client
1873         must issue a stream error (<a href="#StreamErrorHandler" title="Stream Error Handling">Section&nbsp;3.4.2</a>) with error code PROTOCOL ERROR.
1874      </p>
1875      <p id="rfc.section.4.3.2.p.8">If the server sends a HEADERS frame after sending a data frame for the same stream, the client MAY ignore the HEADERS frame.
1876         Ignoring the HEADERS frame after a data frame prevents handling of HTTP's trailing headers (http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.40).
1877      </p>
1878      <h1 id="rfc.section.5"><a href="#rfc.section.5">5.</a>&nbsp;Design Rationale and Notes
1879      </h1>
1880      <p id="rfc.section.5.p.1">Authors' notes: The notes in this section have no bearing on the HTTP/2.0 protocol as specified within this document, and
1881         none of these notes should be considered authoritative about how the protocol works. However, these notes may prove useful
1882         in future debates about how to resolve protocol ambiguities or how to evolve the protocol going forward. They may be removed
1883         before the final draft.
1884      </p>
1885      <h2 id="rfc.section.5.1"><a href="#rfc.section.5.1">5.1</a>&nbsp;Separation of Framing Layer and Application Layer
1886      </h2>
1887      <p id="rfc.section.5.1.p.1">Readers may note that this specification sometimes blends the framing layer (<a href="#FramingLayer" title="HTTP/2.0 Framing Layer">Section&nbsp;3</a>) with requirements of a specific application - HTTP (<a href="#HTTPLayer" title="HTTP Layering over HTTP/2.0">Section&nbsp;4</a>). This is reflected in the request/response nature of the streams, the definition of the HEADERS and compression contexts
1888         which are very similar to HTTP, and other areas as well.
1889      </p>
1890      <p id="rfc.section.5.1.p.2">This blending is intentional - the primary goal of this protocol is to create a low-latency protocol for use with HTTP. Isolating
1891         the two layers is convenient for description of the protocol and how it relates to existing HTTP implementations. However,
1892         the ability to reuse the HTTP/2.0 framing layer is a non goal.
1893      </p>
1894      <h2 id="rfc.section.5.2"><a href="#rfc.section.5.2">5.2</a>&nbsp;Error handling - Framing Layer
1895      </h2>
1896      <p id="rfc.section.5.2.p.1">Error handling at the HTTP/2.0 layer splits errors into two groups: Those that affect an individual HTTP/2.0 stream, and those
1897         that do not.
1898      </p>
1899      <p id="rfc.section.5.2.p.2">When an error is confined to a single stream, but general framing is in tact, HTTP/2.0 attempts to use the RST_STREAM as a
1900         mechanism to invalidate the stream but move forward without aborting the connection altogether.
1901      </p>
1902      <p id="rfc.section.5.2.p.3">For errors occuring outside of a single stream context, HTTP/2.0 assumes the entire session is hosed. In this case, the endpoint
1903         detecting the error should initiate a connection close.
1904      </p>
1905      <h2 id="rfc.section.5.3"><a href="#rfc.section.5.3">5.3</a>&nbsp;One Connection Per Domain
1906      </h2>
1907      <p id="rfc.section.5.3.p.1">HTTP/2.0 attempts to use fewer connections than other protocols have traditionally used. The rationale for this behavior is
1908         because it is very difficult to provide a consistent level of service (e.g. TCP slow-start), prioritization, or optimal compression
1909         when the client is connecting to the server through multiple channels.
1910      </p>
1911      <p id="rfc.section.5.3.p.2">Through lab measurements, we have seen consistent latency benefits by using fewer connections from the client. The overall
1912         number of packets sent by HTTP/2.0 can be as much as 40% less than HTTP. Handling large numbers of concurrent connections
1913         on the server also does become a scalability problem, and HTTP/2.0 reduces this load.
1914      </p>
1915      <p id="rfc.section.5.3.p.3">The use of multiple connections is not without benefit, however. Because HTTP/2.0 multiplexes multiple, independent streams
1916         onto a single stream, it creates a potential for head-of-line blocking problems at the transport level. In tests so far, the
1917         negative effects of head-of-line blocking (especially in the presence of packet loss) is outweighed by the benefits of compression
1918         and prioritization.
1919      </p>
1920      <h2 id="rfc.section.5.4"><a href="#rfc.section.5.4">5.4</a>&nbsp;Fixed vs Variable Length Fields
1921      </h2>
1922      <p id="rfc.section.5.4.p.1">HTTP/2.0 favors use of fixed length 32bit fields in cases where smaller, variable length encodings could have been used. To
1923         some, this seems like a tragic waste of bandwidth. HTTP/2.0 choses the simple encoding for speed and simplicity.
1924      </p>
1925      <p id="rfc.section.5.4.p.2">The goal of HTTP/2.0 is to reduce latency on the network. The overhead of HTTP/2.0 frames is generally quite low. Each data
1926         frame is only an 8 byte overhead for a 1452 byte payload (~0.6%). At the time of this writing, bandwidth is already plentiful,
1927         and there is a strong trend indicating that bandwidth will continue to increase. With an average worldwide bandwidth of 1Mbps,
1928         and assuming that a variable length encoding could reduce the overhead by 50%, the latency saved by using a variable length
1929         encoding would be less than 100 nanoseconds. More interesting are the effects when the larger encodings force a packet boundary,
1930         in which case a round-trip could be induced. However, by addressing other aspects of HTTP/2.0 and TCP interactions, we believe
1931         this is completely mitigated.
1932      </p>
1933      <h2 id="rfc.section.5.5"><a href="#rfc.section.5.5">5.5</a>&nbsp;Compression Context(s)
1934      </h2>
1935      <p id="rfc.section.5.5.p.1">When isolating the compression contexts used for communicating with multiple origins, we had a few choices to make. We could
1936         have maintained a map (or list) of compression contexts usable for each origin. The basic case is easy - each HEADERS frame
1937         would need to identify the context to use for that frame. However, compression contexts are not cheap, so the lifecycle of
1938         each context would need to be bounded. For proxy servers, where we could churn through many contexts, this would be a concern.
1939         We considered using a static set of contexts, say 16 of them, which would bound the memory use. We also considered dynamic
1940         contexts, which could be created on the fly, and would need to be subsequently destroyed. All of these are complicated, and
1941         ultimately we decided that such a mechanism creates too many problems to solve.
1942      </p>
1943      <p id="rfc.section.5.5.p.2">Alternatively, we've chosen the simple approach, which is to simply provide a flag for resetting the compression context.
1944         For the common case (no proxy), this fine because most requests are to the same origin and we never need to reset the context.
1945         For cases where we are using two different origins over a single HTTP/2.0 session, we simply reset the compression state between
1946         each transition.
1947      </p>
1948      <h2 id="rfc.section.5.6"><a href="#rfc.section.5.6">5.6</a>&nbsp;Unidirectional streams
1949      </h2>
1950      <p id="rfc.section.5.6.p.1">Many readers notice that unidirectional streams are both a bit confusing in concept and also somewhat redundant. If the recipient
1951         of a stream doesn't wish to send data on a stream, it could simply send a SYN_REPLY with the FLAG_FIN bit set. The FLAG_UNIDIRECTIONAL
1952         is, therefore, not necessary.
1953      </p>
1954      <p id="rfc.section.5.6.p.2">It is true that we don't need the UNIDIRECTIONAL markings. It is added because it avoids the recipient of pushed streams from
1955         needing to send a set of empty frames (e.g. the SYN_STREAM w/ FLAG_FIN) which otherwise serve no purpose.
1956      </p>
1957      <h2 id="rfc.section.5.7"><a href="#rfc.section.5.7">5.7</a>&nbsp;Data Compression
1958      </h2>
1959      <p id="rfc.section.5.7.p.1">Generic compression of data portion of the streams (as opposed to compression of the headers) without knowing the content
1960         of the stream is redundant. There is no value in compressing a stream which is already compressed. Because of this, HTTP/2.0
1961         does allow data compression to be optional. We included it because study of existing websites shows that many sites are not
1962         using compression as they should, and users suffer because of it. We wanted a mechanism where, at the HTTP/2.0 layer, site
1963         administrators could simply force compression - it is better to compress twice than to not compress.
1964      </p>
1965      <p id="rfc.section.5.7.p.2">Overall, however, with this feature being optional and sometimes redundant, it is unclear if it is useful at all. We will
1966         likely remove it from the specification.
1967      </p>
1968      <h2 id="rfc.section.5.8"><a href="#rfc.section.5.8">5.8</a>&nbsp;Server Push
1969      </h2>
1970      <p id="rfc.section.5.8.p.1">A subtle but important point is that server push streams must be declared before the associated stream is closed. The reason
1971         for this is so that proxies have a lifetime for which they can discard information about previous streams. If a pushed stream
1972         could associate itself with an already-closed stream, then endpoints would not have a specific lifecycle for when they could
1973         disavow knowledge of the streams which went before.
1974      </p>
1975      <h1 id="rfc.section.6"><a href="#rfc.section.6">6.</a>&nbsp;Security Considerations
1976      </h1>
1977      <h2 id="rfc.section.6.1"><a href="#rfc.section.6.1">6.1</a>&nbsp;Use of Same-origin constraints
1978      </h2>
1979      <p id="rfc.section.6.1.p.1">This specification uses the <a href="#RFC6454">same-origin policy</a> <cite title="The Web Origin Concept" id="rfc.xref.RFC6454.4">[RFC6454]</cite> in all cases where verification of content is required.
1980      </p>
1981      <h2 id="rfc.section.6.2"><a href="#rfc.section.6.2">6.2</a>&nbsp;HTTP Headers and HTTP/2.0 Headers
1982      </h2>
1983      <p id="rfc.section.6.2.p.1">At the application level, HTTP uses name/value pairs in its headers. Because HTTP/2.0 merges the existing HTTP headers with
1984         HTTP/2.0 headers, there is a possibility that some HTTP applications already use a particular header name. To avoid any conflicts,
1985         all headers introduced for layering HTTP over HTTP/2.0 are prefixed with ":". ":" is not a valid sequence in HTTP header naming,
1986         preventing any possible conflict.
1987      </p>
1988      <h2 id="rfc.section.6.3"><a href="#rfc.section.6.3">6.3</a>&nbsp;Cross-Protocol Attacks
1989      </h2>
1990      <p id="rfc.section.6.3.p.1">By utilizing TLS, we believe that HTTP/2.0 introduces no new cross-protocol attacks. TLS encrypts the contents of all transmission
1991         (except the handshake itself), making it difficult for attackers to control the data which could be used in a cross-protocol
1992         attack.
1993      </p>
1994      <h2 id="rfc.section.6.4"><a href="#rfc.section.6.4">6.4</a>&nbsp;Server Push Implicit Headers
1995      </h2>
1996      <p id="rfc.section.6.4.p.1">Pushed resources do not have an associated request. In order for existing HTTP cache control validations (such as the Vary
1997         header) to work, however, all cached resources must have a set of request headers. For this reason, browsers MUST be careful
1998         to inherit request headers from the associated stream for the push. This includes the 'Cookie' header.
1999      </p>
2000      <h1 id="rfc.section.7"><a href="#rfc.section.7">7.</a>&nbsp;Privacy Considerations
2001      </h1>
2002      <h2 id="rfc.section.7.1"><a href="#rfc.section.7.1">7.1</a>&nbsp;Long Lived Connections
2003      </h2>
2004      <p id="rfc.section.7.1.p.1">HTTP/2.0 aims to keep connections open longer between clients and servers in order to reduce the latency when a user makes
2005         a request. The maintenance of these connections over time could be used to expose private information. For example, a user
2006         using a browser hours after the previous user stopped using that browser may be able to learn about what the previous user
2007         was doing. This is a problem with HTTP in its current form as well, however the short lived connections make it less of a
2008         risk.
2009      </p>
2010      <h2 id="rfc.section.7.2"><a href="#rfc.section.7.2">7.2</a>&nbsp;SETTINGS frame
2011      </h2>
2012      <p id="rfc.section.7.2.p.1">The HTTP/2.0 SETTINGS frame allows servers to store out-of-band transmitted information about the communication between client
2013         and server on the client. Although this is intended only to be used to reduce latency, renegade servers could use it as a
2014         mechanism to store identifying information about the client in future requests.
2015      </p>
2016      <p id="rfc.section.7.2.p.2">Clients implementing privacy modes, such as Google Chrome's "incognito mode", may wish to disable client-persisted SETTINGS
2017         storage.
2018      </p>
2019      <p id="rfc.section.7.2.p.3">Clients MUST clear persisted SETTINGS information when clearing the cookies.</p>
2020      <p id="rfc.section.7.2.p.4">TODO: Put range maximums on each type of setting to limit inappropriate uses.</p>
2021      <h1 id="rfc.section.8"><a href="#rfc.section.8">8.</a>&nbsp;Requirements Notation
2022      </h1>
2023      <p id="rfc.section.8.p.1">The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL"
2024         in this document are to be interpreted as described in <a href="#RFC2119">RFC 2119</a> <cite title="Key words for use in RFCs to Indicate Requirement Levels" id="rfc.xref.RFC2119.1">[RFC2119]</cite>.
2025      </p>
2026      <h1 id="rfc.section.9"><a href="#rfc.section.9">9.</a>&nbsp;Acknowledgements
2027      </h1>
2028      <p id="rfc.section.9.p.1">This document includes substantial input from the following individuals: </p>
2029      <ul>
2030         <li>Adam Langley, Wan-Teh Chang, Jim Morrison, Mark Nottingham, Alyssa Wilk, Costin Manolache, William Chan, Vitaliy Lvin, Joe
2031            Chan, Adam Barth, Ryan Hamilton, Gavin Peters, Kent Alstad, Kevin Lindsay, Paul Amer, Fan Yang, Jonathan Leighton (SPDY contributors).
2032         </li>
2033         <li>Gabriel Montenegro and Willy Tarreau (Upgrade mechanism)</li>
2034         <li>William Chan, Salvatore Loreto, Osama Mazahir, Gabriel Montenegro, Jitu Padhye, Roberto Peon, Rob Trace (Flow control principles)</li>
2035         <li>Mark Nottingham and Julian Reschke</li>
2036      </ul>
2037      <h1 id="rfc.references"><a href="#rfc.section.10" id="rfc.section.10">10.</a> Normative References
2038      </h1>
2039      <table>                           
2040         <tr>
2041            <td class="reference"><b id="ASCII">[ASCII]</b></td>
2042            <td class="top">“US-ASCII. Coded Character Set - 7-Bit American Standard Code for Information Interchange. Standard ANSI X3.4-1986, ANSI, 1986.”.</td>
2043         </tr>
2044         <tr>
2045            <td class="reference"><b id="HTTP-p1">[HTTP-p1]</b></td>
2046            <td class="top">Fielding, R. and J. Reschke, “<a href="http://tools.ietf.org/html/draft-ietf-httpbis-p1-messaging-21">Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</a>”, Internet-Draft&nbsp;draft-ietf-httpbis-p1-messaging-21 (work in progress), October&nbsp;2012.
2047            </td>
2048         </tr>
2049         <tr>
2050            <td class="reference"><b id="HTTP-p2">[HTTP-p2]</b></td>
2051            <td class="top">Fielding, R. and J. Reschke, “<a href="http://tools.ietf.org/html/draft-ietf-httpbis-p2-semantics-21">Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</a>”, Internet-Draft&nbsp;draft-ietf-httpbis-p2-semantics-21 (work in progress), October&nbsp;2012.
2052            </td>
2053         </tr>
2054         <tr>
2055            <td class="reference"><b id="RFC0793">[RFC0793]</b></td>
2056            <td class="top">Postel, J., “<a href="http://tools.ietf.org/html/rfc793">Transmission Control Protocol</a>”, STD&nbsp;7, RFC&nbsp;793, September&nbsp;1981.
2057            </td>
2058         </tr>
2059         <tr>
2060            <td class="reference"><b id="RFC1738">[RFC1738]</b></td>
2061            <td class="top">Berners-Lee, T., Masinter, L., and M. McCahill, “<a href="http://tools.ietf.org/html/rfc1738">Uniform Resource Locators (URL)</a>”, RFC&nbsp;1738, December&nbsp;1994.
2062            </td>
2063         </tr>
2064         <tr>
2065            <td class="reference"><b id="RFC1950">[RFC1950]</b></td>
2066            <td class="top"><a href="mailto:ghost@aladdin.com" title="Aladdin Enterprises">Deutsch, L.</a> and J. Gailly, “<a href="http://tools.ietf.org/html/rfc1950">ZLIB Compressed Data Format Specification version 3.3</a>”, RFC&nbsp;1950, May&nbsp;1996.
2067            </td>
2068         </tr>
2069         <tr>
2070            <td class="reference"><b id="RFC2119">[RFC2119]</b></td>
2071            <td class="top"><a href="mailto:sob@harvard.edu" title="Harvard University">Bradner, S.</a>, “<a href="http://tools.ietf.org/html/rfc2119">Key words for use in RFCs to Indicate Requirement Levels</a>”, BCP&nbsp;14, RFC&nbsp;2119, March&nbsp;1997.
2072            </td>
2073         </tr>
2074         <tr>
2075            <td class="reference"><b id="RFC2616">[RFC2616]</b></td>
2076            <td class="top"><a href="mailto:fielding@ics.uci.edu" title="University of California, Irvine">Fielding, R.</a>, <a href="mailto:jg@w3.org" title="W3C">Gettys, J.</a>, <a href="mailto:mogul@wrl.dec.com" title="Compaq Computer Corporation">Mogul, J.</a>, <a href="mailto:frystyk@w3.org" title="MIT Laboratory for Computer Science">Frystyk, H.</a>, <a href="mailto:masinter@parc.xerox.com" title="Xerox Corporation">Masinter, L.</a>, <a href="mailto:paulle@microsoft.com" title="Microsoft Corporation">Leach, P.</a>, and <a href="mailto:timbl@w3.org" title="W3C">T. Berners-Lee</a>, “<a href="http://tools.ietf.org/html/rfc2616">Hypertext Transfer Protocol -- HTTP/1.1</a>”, RFC&nbsp;2616, June&nbsp;1999.
2077            </td>
2078         </tr>
2079         <tr>
2080            <td class="reference"><b id="RFC2617">[RFC2617]</b></td>
2081            <td class="top"><a href="mailto:john@math.nwu.edu" title="Northwestern University, Department of Mathematics">Franks, J.</a>, <a href="mailto:pbaker@verisign.com" title="Verisign Inc.">Hallam-Baker, P.</a>, <a href="mailto:jeff@AbiSource.com" title="AbiSource, Inc.">Hostetler, J.</a>, <a href="mailto:lawrence@agranat.com" title="Agranat Systems, Inc.">Lawrence, S.</a>, <a href="mailto:paulle@microsoft.com" title="Microsoft Corporation">Leach, P.</a>, Luotonen, A., and <a href="mailto:stewart@OpenMarket.com" title="Open Market, Inc.">L. Stewart</a>, “<a href="http://tools.ietf.org/html/rfc2617">HTTP Authentication: Basic and Digest Access Authentication</a>”, RFC&nbsp;2617, June&nbsp;1999.
2082            </td>
2083         </tr>
2084         <tr>
2085            <td class="reference"><b id="RFC4559">[RFC4559]</b></td>
2086            <td class="top">Jaganathan, K., Zhu, L., and J. Brezak, “<a href="http://tools.ietf.org/html/rfc4559">SPNEGO-based Kerberos and NTLM HTTP Authentication in Microsoft Windows</a>”, RFC&nbsp;4559, June&nbsp;2006.
2087            </td>
2088         </tr>
2089         <tr>
2090            <td class="reference"><b id="RFC5246">[RFC5246]</b></td>
2091            <td class="top">Dierks, T. and E. Rescorla, “<a href="http://tools.ietf.org/html/rfc5246">The Transport Layer Security (TLS) Protocol Version 1.2</a>”, RFC&nbsp;5246, August&nbsp;2008.
2092            </td>
2093         </tr>
2094         <tr>
2095            <td class="reference"><b id="RFC6454">[RFC6454]</b></td>
2096            <td class="top">Barth, A., “<a href="http://tools.ietf.org/html/rfc6454">The Web Origin Concept</a>”, RFC&nbsp;6454, December&nbsp;2011.
2097            </td>
2098         </tr>
2099         <tr>
2100            <td class="reference"><b id="TLSNPN">[TLSNPN]</b></td>
2101            <td class="top">Langley, A., “<a href="http://tools.ietf.org/html/draft-agl-tls-nextprotoneg-01">TLS Next Protocol Negotiation</a>”, Internet-Draft&nbsp;draft-agl-tls-nextprotoneg-01 (work in progress), August&nbsp;2010.
2102            </td>
2103         </tr>
2104         <tr>
2105            <td class="reference"><b id="UDELCOMPRESSION">[UDELCOMPRESSION]</b></td>
2106            <td class="top">Yang, F., Amer, P., and J. Leighton, “<a href="http://www.eecis.udel.edu/~amer/PEL/poc/pdf/SPDY-Fan.pdf">A Methodology to Derive SPDY's Initial Dictionary for Zlib Compression</a>”, &lt;<a href="http://www.eecis.udel.edu/~amer/PEL/poc/pdf/SPDY-Fan.pdf">http://www.eecis.udel.edu/~amer/PEL/poc/pdf/SPDY-Fan.pdf</a>&gt;.
2107            </td>
2108         </tr>
2109      </table>
2110      <div class="avoidbreak">
2111         <h1 id="rfc.authors"><a href="#rfc.authors">Authors' Addresses</a></h1>
2112         <address class="vcard"><span class="vcardline"><span class="fn">Mike Belshe</span><span class="n hidden"><span class="family-name">Belshe</span><span class="given-name">Mike</span></span></span><span class="org vcardline">Twist</span><span class="vcardline">Email: <a href="mailto:mbelshe@chromium.org"><span class="email">mbelshe@chromium.org</span></a></span></address>
2113         <address class="vcard"><span class="vcardline"><span class="fn">Roberto Peon</span><span class="n hidden"><span class="family-name">Peon</span><span class="given-name">Roberto</span></span></span><span class="org vcardline">Google, Inc</span><span class="vcardline">Email: <a href="mailto:fenix@google.com"><span class="email">fenix@google.com</span></a></span></address>
2114         <address class="vcard"><span class="vcardline"><span class="fn">Martin Thomson</span>
2115               (editor)
2116               <span class="n hidden"><span class="family-name">Thomson</span><span class="given-name">Martin</span></span></span><span class="org vcardline">Microsoft</span><span class="adr"><span class="street-address vcardline">3210 Porter Drive</span><span class="vcardline"><span class="locality">Palo Alto</span>, <span class="postal-code">94043</span></span><span class="country-name vcardline">US</span></span><span class="vcardline">Email: <a href="mailto:martin.thomson@skype.net"><span class="email">martin.thomson@skype.net</span></a></span></address>
2117         <address class="vcard"><span class="vcardline"><span class="fn">Alexey Melnikov</span>
2118               (editor)
2119               <span class="n hidden"><span class="family-name">Melnikov</span><span class="given-name">Alexey</span></span></span><span class="org vcardline">Isode Ltd</span><span class="adr"><span class="street-address vcardline">5 Castle Business Village</span><span class="street-address vcardline">36 Station Road</span><span class="vcardline"><span class="locality">Hampton</span>, <span class="region">Middlesex</span>&nbsp;<span class="postal-code">TW12 2BX</span></span><span class="country-name vcardline">UK</span></span><span class="vcardline">Email: <a href="mailto:Alexey.Melnikov@isode.com"><span class="email">Alexey.Melnikov@isode.com</span></a></span></address>
2120      </div>
2121      <h1 id="rfc.section.A" class="np"><a href="#rfc.section.A">A.</a>&nbsp;<a id="change.log" href="#change.log">Change Log (to be removed by RFC Editor before publication)</a></h1>
2122      <h2 id="rfc.section.A.1"><a href="#rfc.section.A.1">A.1</a>&nbsp;<a id="changes.since.draft-ietf-httpbis-http2-01" href="#changes.since.draft-ietf-httpbis-http2-01">Since draft-ietf-httpbis-http2-01</a></h2>
2123      <p id="rfc.section.A.1.p.1">None yet</p>
2124      <h2 id="rfc.section.A.2"><a href="#rfc.section.A.2">A.2</a>&nbsp;<a id="changes.since.draft-ietf-httpbis-http2-00" href="#changes.since.draft-ietf-httpbis-http2-00">Since draft-ietf-httpbis-http2-00</a></h2>
2125      <p id="rfc.section.A.2.p.1">Changed title throughout.</p>
2126      <p id="rfc.section.A.2.p.2">Removed section on Incompatibilities with SPDY draft#2.</p>
2127      <p id="rfc.section.A.2.p.3">Changed INTERNAL_ERROR on GOAWAY to have a value of 2 &lt;<a href="https://groups.google.com/forum/?fromgroups#!topic/spdy-dev/cfUef2gL3iU">https://groups.google.com/forum/?fromgroups#!topic/spdy-dev/cfUef2gL3iU</a>&gt;.
2128      </p>
2129      <p id="rfc.section.A.2.p.4">Replaced abstract and introduction.</p>
2130      <p id="rfc.section.A.2.p.5">Added section on starting HTTP/2.0, including upgrade mechanism.</p>
2131      <p id="rfc.section.A.2.p.6">Removed unused references.</p>
2132      <p id="rfc.section.A.2.p.7">Added flow control principles (<a href="#fc-principles" title="Flow Control Principles">Section&nbsp;3.5.1</a>) based on &lt;<a href="http://tools.ietf.org/html/draft-montenegro-httpbis-http2-fc-principles-01">http://tools.ietf.org/html/draft-montenegro-httpbis-http2-fc-principles-01</a>&gt;.
2133      </p>
2134      <h2 id="rfc.section.A.3"><a href="#rfc.section.A.3">A.3</a>&nbsp;<a id="changes.since.draft-mbelshe-httpbis-spdy-00" href="#changes.since.draft-mbelshe-httpbis-spdy-00">Since draft-mbelshe-httpbis-spdy-00</a></h2>
2135      <p id="rfc.section.A.3.p.1">Adopted as base for draft-ietf-httpbis-http2.</p>
2136      <p id="rfc.section.A.3.p.2">Updated authors/editors list.</p>
2137      <p id="rfc.section.A.3.p.3">Added status note.</p>
2138      <h1 id="rfc.index"><a href="#rfc.index">Index</a></h1>
2139      <p class="noprint"><a href="#rfc.index.A">A</a> <a href="#rfc.index.H">H</a> <a href="#rfc.index.R">R</a> <a href="#rfc.index.T">T</a> <a href="#rfc.index.U">U</a>
2140      </p>
2141      <div class="print2col">
2142         <ul class="ind">
2143            <li><a id="rfc.index.A" href="#rfc.index.A"><b>A</b></a><ul>
2144                  <li><em>ASCII</em>&nbsp;&nbsp;<a href="#rfc.xref.ASCII.1">3.6.10</a>, <a href="#ASCII"><b>10</b></a></li>
2145               </ul>
2146            </li>
2147            <li><a id="rfc.index.H" href="#rfc.index.H"><b>H</b></a><ul>
2148                  <li><em>HTTP-p1</em>&nbsp;&nbsp;<a href="#rfc.xref.HTTP-p1.1">1</a>, <a href="#rfc.xref.HTTP-p1.2">2.1</a>, <a href="#HTTP-p1"><b>10</b></a></li>
2149                  <li><em>HTTP-p2</em>&nbsp;&nbsp;<a href="#rfc.xref.HTTP-p2.1">2.2</a>, <a href="#HTTP-p2"><b>10</b></a></li>
2150               </ul>
2151            </li>
2152            <li><a id="rfc.index.R" href="#rfc.index.R"><b>R</b></a><ul>
2153                  <li><em>RFC0793</em>&nbsp;&nbsp;<a href="#rfc.xref.RFC0793.1">3.1</a>, <a href="#RFC0793"><b>10</b></a></li>
2154                  <li><em>RFC1738</em>&nbsp;&nbsp;<a href="#rfc.xref.RFC1738.1">4.2.1</a>, <a href="#rfc.xref.RFC1738.2">4.2.1</a>, <a href="#RFC1738"><b>10</b></a></li>
2155                  <li><em>RFC1950</em>&nbsp;&nbsp;<a href="#rfc.xref.RFC1950.1">3.6.10.1</a>, <a href="#RFC1950"><b>10</b></a></li>
2156                  <li><em>RFC2119</em>&nbsp;&nbsp;<a href="#rfc.xref.RFC2119.1">8</a>, <a href="#RFC2119"><b>10</b></a></li>
2157                  <li><em>RFC2616</em>&nbsp;&nbsp;<a href="#rfc.xref.RFC2616.1">4</a>, <a href="#RFC2616"><b>10</b></a></li>
2158                  <li><em>RFC2617</em>&nbsp;&nbsp;<a href="#rfc.xref.RFC2617.1">4.2.3</a>, <a href="#RFC2617"><b>10</b></a></li>
2159                  <li><em>RFC4559</em>&nbsp;&nbsp;<a href="#rfc.xref.RFC4559.1">4.2.3</a>, <a href="#RFC4559"><b>10</b></a></li>
2160                  <li><em>RFC5246</em>&nbsp;&nbsp;<a href="#rfc.xref.RFC5246.1">3.6.9</a>, <a href="#RFC5246"><b>10</b></a><ul>
2161                        <li><em>Section 4.7</em>&nbsp;&nbsp;<a href="#rfc.xref.RFC5246.1">3.6.9</a></li>
2162                     </ul>
2163                  </li>
2164                  <li><em>RFC6454</em>&nbsp;&nbsp;<a href="#rfc.xref.RFC6454.1">3.6.4</a>, <a href="#rfc.xref.RFC6454.2">4.1</a>, <a href="#rfc.xref.RFC6454.3">4.3</a>, <a href="#rfc.xref.RFC6454.4">6.1</a>, <a href="#RFC6454"><b>10</b></a></li>
2165               </ul>
2166            </li>
2167            <li><a id="rfc.index.T" href="#rfc.index.T"><b>T</b></a><ul>
2168                  <li><em>TLSNPN</em>&nbsp;&nbsp;<a href="#rfc.xref.TLSNPN.1">2.1</a>, <a href="#TLSNPN"><b>10</b></a></li>
2169               </ul>
2170            </li>
2171            <li><a id="rfc.index.U" href="#rfc.index.U"><b>U</b></a><ul>
2172                  <li><em>UDELCOMPRESSION</em>&nbsp;&nbsp;<a href="#rfc.xref.UDELCOMPRESSION.1">3.6.10.1</a>, <a href="#UDELCOMPRESSION"><b>10</b></a></li>
2173               </ul>
2174            </li>
2175         </ul>
2176      </div>
2177   </body>
2178</html>
Note: See TracBrowser for help on using the repository browser.