Files
RedBear-OS/recipes/libs/nghttp2/source/doc/nghttp2_session_terminate_session2.rst
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
Red Bear OS is a full fork. All sources must be available from git clone
with zero network access. Removed gitignore rules that excluded fetched
source trees under recipes/*/source/, local/recipes/kde/*/source/,
local/recipes/qt/*/source/, and vendor source trees.

Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded.

127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt
frameworks, mesa, wayland, DRM drivers, and every other recipe source.
2026-05-14 10:55:53 +01:00

35 lines
1.2 KiB
ReStructuredText

nghttp2_session_terminate_session2
==================================
Synopsis
--------
*#include <nghttp2/nghttp2.h>*
.. function:: int nghttp2_session_terminate_session2(nghttp2_session *session, int32_t last_stream_id, uint32_t error_code)
Signals the session so that the connection should be terminated.
This function behaves like `nghttp2_session_terminate_session()`,
but the last stream ID can be specified by the application for fine
grained control of stream. The HTTP/2 specification does not allow
last_stream_id to be increased. So the actual value sent as
last_stream_id is the minimum value between the given
*last_stream_id* and the last_stream_id we have previously sent to
the peer.
The *last_stream_id* is peer's stream ID or 0. So if *session* is
initialized as client, *last_stream_id* must be even or 0. If
*session* is initialized as server, *last_stream_id* must be odd or
0.
This function returns 0 if it succeeds, or one of the following
negative error codes:
:enum:`nghttp2_error.NGHTTP2_ERR_NOMEM`
Out of memory.
:enum:`nghttp2_error.NGHTTP2_ERR_INVALID_ARGUMENT`
The *last_stream_id* is invalid.