Files
sm1.13-ripext/nghttp2/doc/nghttp2_session_server_new.rst
jenz 08c03ac533
CI / Build (clang, clang++, ubuntu-22.04, linux, 3.10, master, x86,x86_64) (push) Canceled after 0s
CI / Build (clang, clang++, windows-2022, windows, 3.10, master, x86,x86_64) (push) Canceled after 0s
CI / Release (push) Canceled after 0s
first commit
2026-09-13 22:18:11 +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_callback` 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:
:macro:`nghttp2_error.NGHTTP2_ERR_NOMEM`
Out of memory.