Update doc
This commit is contained in:
parent
ffcbffc28b
commit
7563839756
|
@ -851,6 +851,10 @@ nghttp2_stream* nghttp2_session_open_stream(nghttp2_session *session,
|
||||||
return stream;
|
return stream;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* TODO Client does not have to track dependencies of streams except
|
||||||
|
for those which have upload data. Currently, we just track
|
||||||
|
everything. */
|
||||||
|
|
||||||
root_stream = nghttp2_stream_get_dep_root(dep_stream);
|
root_stream = nghttp2_stream_get_dep_root(dep_stream);
|
||||||
|
|
||||||
if(root_stream->num_substreams < NGHTTP2_MAX_DEP_TREE_LENGTH) {
|
if(root_stream->num_substreams < NGHTTP2_MAX_DEP_TREE_LENGTH) {
|
||||||
|
|
|
@ -132,10 +132,10 @@ struct nghttp2_session {
|
||||||
int64_t next_seq;
|
int64_t next_seq;
|
||||||
void *user_data;
|
void *user_data;
|
||||||
/* Points to the latest closed stream. NULL if there is no closed
|
/* Points to the latest closed stream. NULL if there is no closed
|
||||||
stream. */
|
stream. Only used when session is initialized as server. */
|
||||||
nghttp2_stream *closed_stream_head;
|
nghttp2_stream *closed_stream_head;
|
||||||
/* Points to the oldest closed stream. NULL if there is no closed
|
/* Points to the oldest closed stream. NULL if there is no closed
|
||||||
stream. */
|
stream. Only used when session is initialized as server. */
|
||||||
nghttp2_stream *closed_stream_tail;
|
nghttp2_stream *closed_stream_tail;
|
||||||
/* In-flight SETTINGS values. NULL does not necessarily mean there
|
/* In-flight SETTINGS values. NULL does not necessarily mean there
|
||||||
is no in-flight SETTINGS. */
|
is no in-flight SETTINGS. */
|
||||||
|
|
Loading…
Reference in New Issue