Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
9416bf90
Commit
9416bf90
authored
Nov 12, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update doc
parent
24f83eef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
lib/nghttp2_stream.h
lib/nghttp2_stream.h
+7
-7
No files found.
lib/nghttp2_stream.h
View file @
9416bf90
...
...
@@ -88,9 +88,9 @@ typedef enum {
NGHTTP2_STREAM_FLAG_PUSH
=
0x01
,
/* Indicates that this stream was closed */
NGHTTP2_STREAM_FLAG_CLOSED
=
0x02
,
/* Indicates the
DATA
is deferred due to flow control. */
/* Indicates the
item
is deferred due to flow control. */
NGHTTP2_STREAM_FLAG_DEFERRED_FLOW_CONTROL
=
0x04
,
/* Indicates the
DATA
is deferred by user callback */
/* Indicates the
item
is deferred by user callback */
NGHTTP2_STREAM_FLAG_DEFERRED_USER
=
0x08
,
/* bitwise OR of NGHTTP2_STREAM_FLAG_DEFERRED_FLOW_CONTROL and
NGHTTP2_STREAM_FLAG_DEFERRED_USER. */
...
...
@@ -138,12 +138,12 @@ struct nghttp2_stream {
nghttp2_stream_roots
*
roots
;
/* The arbitrary data provided by user for this stream. */
void
*
stream_user_data
;
/*
DATA frame item
*/
/*
Item to send
*/
nghttp2_outbound_item
*
data_item
;
/* stream ID */
int32_t
stream_id
;
/* categorized priority of this stream. Only stream bearing
NGHTTP2_STREAM_DPRI_TOP can send
DATA frame
. */
NGHTTP2_STREAM_DPRI_TOP can send
item
. */
nghttp2_stream_dpri
dpri
;
/* the number of streams in subtree */
size_t
num_substreams
;
...
...
@@ -206,9 +206,9 @@ void nghttp2_stream_free(nghttp2_stream *stream);
void
nghttp2_stream_shutdown
(
nghttp2_stream
*
stream
,
nghttp2_shut_flag
flag
);
/*
* Defer
DATA frame |stream->data_item|. We won't call this function
*
in the situation where |stream->data_item| == NULL. If |flags| is
*
bitwise
OR of zero or more of NGHTTP2_STREAM_FLAG_DEFERRED_USER and
* Defer
|stream->data_item|. We won't call this function in the
*
situation where |stream->data_item| == NULL. If |flags| is bitwise
* OR of zero or more of NGHTTP2_STREAM_FLAG_DEFERRED_USER and
* NGHTTP2_STREAM_FLAG_DEFERRED_FLOW_CONTROL. The |flags| indicates
* the reason of this action.
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment