Update doc

This commit is contained in:
Tatsuhiro Tsujikawa 2013-11-02 17:01:32 +09:00
parent 5475083215
commit 2a3509189d
7 changed files with 21 additions and 2 deletions

View File

@ -221,6 +221,10 @@ Enums
(``-527``)
There are too many in-flight SETTING frame and no more
transmission of SETTINGS is allowed.
.. macro:: NGHTTP2_ERR_PUSH_DISABLED
(``-528``)
The server push is disabled.
.. macro:: NGHTTP2_ERR_FATAL
(``-900``)

View File

@ -366,6 +366,13 @@ There are too many in-flight SETTING frame and no more
transmission of SETTINGS is allowed.</p>
</dd></dl>
<dl class="macro">
<dt id="NGHTTP2_ERR_PUSH_DISABLED">
<tt class="descname">NGHTTP2_ERR_PUSH_DISABLED</tt><a class="headerlink" href="#NGHTTP2_ERR_PUSH_DISABLED" title="Permalink to this definition"></a></dt>
<dd><p>(<tt class="docutils literal"><span class="pre">-528</span></tt>)
The server push is disabled.</p>
</dd></dl>
<dl class="macro">
<dt id="NGHTTP2_ERR_FATAL">
<tt class="descname">NGHTTP2_ERR_FATAL</tt><a class="headerlink" href="#NGHTTP2_ERR_FATAL" title="Permalink to this definition"></a></dt>

View File

@ -197,6 +197,10 @@
</dt>
<dt><a href="apiref.html#NGHTTP2_ERR_PUSH_DISABLED">NGHTTP2_ERR_PUSH_DISABLED (C macro)</a>
</dt>
<dt><a href="apiref.html#NGHTTP2_ERR_START_STREAM_NOT_ALLOWED">NGHTTP2_ERR_START_STREAM_NOT_ALLOWED (C macro)</a>
</dt>

View File

@ -331,6 +331,10 @@
<span class="cm"> */</span>
<span class="n">NGHTTP2_ERR_TOO_MANY_INFLIGHT_SETTINGS</span> <span class="o">=</span> <span class="o">-</span><span class="mi">527</span><span class="p">,</span>
<span class="cm">/**</span>
<span class="cm"> * The server push is disabled.</span>
<span class="cm"> */</span>
<span class="n">NGHTTP2_ERR_PUSH_DISABLED</span> <span class="o">=</span> <span class="o">-</span><span class="mi">528</span><span class="p">,</span>
<span class="cm">/**</span>
<span class="cm"> * The errors &lt; :enum:`NGHTTP2_ERR_FATAL` mean that the library is</span>
<span class="cm"> * under unexpected condition and cannot process any further data</span>
<span class="cm"> * reliably (e.g., out of memory).</span>

Binary file not shown.

View File

@ -84,7 +84,7 @@ header compression
<td>Done</td>
</tr>
<tr class="row-odd"><td>SETTINGS_ENABLE_PUSH</td>
<td>&nbsp;</td>
<td>Done</td>
</tr>
<tr class="row-even"><td>FRAME_SIZE_ERROR</td>
<td>Done</td>

File diff suppressed because one or more lines are too long