Files
RedBear-OS/recipes/libs/nghttp2/source/doc/nghttp2_session_server_new.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

30 lines
1002 B
ReStructuredText

nghttp2_session_server_new
==========================
Synopsis
--------
*#include <nghttp2/nghttp2.h>*
.. function:: int nghttp2_session_server_new(nghttp2_session **session_ptr, const nghttp2_session_callbacks *callbacks, void *user_data)
Initializes *\*session_ptr* for server use. The all members of
*callbacks* are copied to *\*session_ptr*. Therefore *\*session_ptr*
does not store *callbacks*. The *user_data* is an arbitrary user
supplied data, which will be passed to the callback functions.
The :type:`nghttp2_send_callback2` must be specified. If the
application code uses `nghttp2_session_recv()`, the
:type:`nghttp2_recv_callback` must be specified. The other members
of *callbacks* can be ``NULL``.
If this function fails, *\*session_ptr* is left untouched.
This function returns 0 if it succeeds, or one of the following
negative error codes:
:enum:`nghttp2_error.NGHTTP2_ERR_NOMEM`
Out of memory.