Update doc
This commit is contained in:
parent
5475083215
commit
2a3509189d
|
@ -221,6 +221,10 @@ Enums
|
||||||
(``-527``)
|
(``-527``)
|
||||||
There are too many in-flight SETTING frame and no more
|
There are too many in-flight SETTING frame and no more
|
||||||
transmission of SETTINGS is allowed.
|
transmission of SETTINGS is allowed.
|
||||||
|
.. macro:: NGHTTP2_ERR_PUSH_DISABLED
|
||||||
|
|
||||||
|
(``-528``)
|
||||||
|
The server push is disabled.
|
||||||
.. macro:: NGHTTP2_ERR_FATAL
|
.. macro:: NGHTTP2_ERR_FATAL
|
||||||
|
|
||||||
(``-900``)
|
(``-900``)
|
||||||
|
|
|
@ -366,6 +366,13 @@ There are too many in-flight SETTING frame and no more
|
||||||
transmission of SETTINGS is allowed.</p>
|
transmission of SETTINGS is allowed.</p>
|
||||||
</dd></dl>
|
</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">
|
<dl class="macro">
|
||||||
<dt id="NGHTTP2_ERR_FATAL">
|
<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>
|
<tt class="descname">NGHTTP2_ERR_FATAL</tt><a class="headerlink" href="#NGHTTP2_ERR_FATAL" title="Permalink to this definition">¶</a></dt>
|
||||||
|
|
|
@ -197,6 +197,10 @@
|
||||||
</dt>
|
</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><a href="apiref.html#NGHTTP2_ERR_START_STREAM_NOT_ALLOWED">NGHTTP2_ERR_START_STREAM_NOT_ALLOWED (C macro)</a>
|
||||||
</dt>
|
</dt>
|
||||||
|
|
||||||
|
|
|
@ -331,6 +331,10 @@
|
||||||
<span class="cm"> */</span>
|
<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="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">/**</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 < :enum:`NGHTTP2_ERR_FATAL` mean that the library is</span>
|
<span class="cm"> * The errors < :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"> * under unexpected condition and cannot process any further data</span>
|
||||||
<span class="cm"> * reliably (e.g., out of memory).</span>
|
<span class="cm"> * reliably (e.g., out of memory).</span>
|
||||||
|
|
BIN
objects.inv
BIN
objects.inv
Binary file not shown.
|
@ -84,7 +84,7 @@ header compression
|
||||||
<td>Done</td>
|
<td>Done</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="row-odd"><td>SETTINGS_ENABLE_PUSH</td>
|
<tr class="row-odd"><td>SETTINGS_ENABLE_PUSH</td>
|
||||||
<td> </td>
|
<td>Done</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr class="row-even"><td>FRAME_SIZE_ERROR</td>
|
<tr class="row-even"><td>FRAME_SIZE_ERROR</td>
|
||||||
<td>Done</td>
|
<td>Done</td>
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue