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
a9d97d9d
Commit
a9d97d9d
authored
Mar 30, 2014
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update doc
parent
bd7d335d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
lib/includes/nghttp2/nghttp2.h
lib/includes/nghttp2/nghttp2.h
+14
-4
No files found.
lib/includes/nghttp2/nghttp2.h
View file @
a9d97d9d
...
@@ -651,18 +651,18 @@ typedef enum {
...
@@ -651,18 +651,18 @@ typedef enum {
*/
*/
typedef
enum
{
typedef
enum
{
/**
/**
* No priority is given.
* No priority is given.
The default priority will be used.
*/
*/
NGHTTP2_PRIORITY_TYPE_NONE
,
NGHTTP2_PRIORITY_TYPE_NONE
=
0
,
/**
/**
* Priority group ID and its weight are specified.
* Priority group ID and its weight are specified.
*/
*/
NGHTTP2_PRIORITY_TYPE_GROUP
,
NGHTTP2_PRIORITY_TYPE_GROUP
=
1
,
/**
/**
* The stream ID of a stream to depend on and its exclusive flag is
* The stream ID of a stream to depend on and its exclusive flag is
* specified.
* specified.
*/
*/
NGHTTP2_PRIORITY_TYPE_DEP
NGHTTP2_PRIORITY_TYPE_DEP
=
2
}
nghttp2_priority_type
;
}
nghttp2_priority_type
;
/**
/**
...
@@ -718,7 +718,17 @@ typedef struct {
...
@@ -718,7 +718,17 @@ typedef struct {
nghttp2_priority_type
pri_type
;
nghttp2_priority_type
pri_type
;
union
{
union
{
/**
* Specify priority group ID and its weight. This field is
* interpreted only when |pri_type| member is
* :enum:`NGHTTP2_PRIORITY_TYPE_GROUP`.
*/
nghttp2_priority_group
group
;
nghttp2_priority_group
group
;
/**
* Specify stream ID of a stream to depend on and exclusive flag.
* This field is interpreted only when |pri_type| member is
* :enum:`NGHTTP2_PRIORITY_TYPE_DEP`.
*/
nghttp2_priority_dep
dep
;
nghttp2_priority_dep
dep
;
};
};
}
nghttp2_priority_spec
;
}
nghttp2_priority_spec
;
...
...
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