Lines Matching defs:streams

89 /* The default maximum number of incoming reserved streams */
93 number, we keep NGHTTP2_MIN_IDLE_STREAMS streams in idle state */
106 /* The default value of maximum number of concurrent streams. */
203 nghttp2_map /* <nghttp2_stream*> */ streams;
248 /* Sequential number across all streams to process streams in
251 /* The number of outgoing streams. This will be capped by
254 /* The number of incoming streams. This will be capped by
257 /* The number of incoming reserved streams. This is the number of
258 streams in reserved (remote) state. RFC 7540 does not limit this
266 /* The maximum number of incoming reserved streams (reserved
270 /* The number of closed streams still kept in |streams| hash. The
271 closed streams can be accessed through single linked list
273 incoming streams and session is initialized as server. */
275 /* The number of idle streams kept in |streams| hash. The idle
276 streams can be accessed through doubly linked list
278 streams if session is initialized as server. */
384 /* linked list of streams to close */
388 close incoming streams. zero if GOAWAY is received from peer and
389 we are going to close outgoing streams. */
521 * This function adjusts neither the number of closed streams or idle
522 * streams. The caller should manually call
570 * limitation of maximum number of streams in memory, |stream| is not
580 * more oldest streams are removed from list as necessary.
586 * Detaches |stream| from idle streams linked list.
592 * Deletes closed stream to ensure that number of incoming streams
605 * Deletes idle stream to ensure that number of idle streams is in
871 * streams. That means if session->ob_syn has item and max concurrent
872 * streams is reached, the even if other queues contain items, then
881 * streams. That means if session->ob_syn has item and max concurrent
882 * streams is reached, the even if other queues contain items, then
913 * This function does not adjust the number of idle streams. The