2 nghttp2_session_consume_stream
3 ==============================
8 *#include <nghttp2/nghttp2.h>*
10 .. function:: int nghttp2_session_consume_stream(nghttp2_session *session, int32_t stream_id, size_t size)
13 Like `nghttp2_session_consume()`, but this only tells library that
14 *size* bytes were consumed only for stream denoted by *stream_id*.
15 Note that HTTP/2 maintains connection and stream level flow control
16 windows independently.
18 This function returns 0 if it succeeds, or one of the following
21 :macro:`nghttp2_error.NGHTTP2_ERR_NOMEM`
23 :macro:`nghttp2_error.NGHTTP2_ERR_INVALID_ARGUMENT`
25 :macro:`nghttp2_error.NGHTTP2_ERR_INVALID_STATE`
26 Automatic WINDOW_UPDATE is not disabled.