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
bc747318
Commit
bc747318
authored
Dec 14, 2013
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update doc
parent
0867b57c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
4 deletions
+20
-4
lib/includes/nghttp2/nghttp2.h
lib/includes/nghttp2/nghttp2.h
+20
-4
No files found.
lib/includes/nghttp2/nghttp2.h
View file @
bc747318
...
@@ -1765,7 +1765,11 @@ const char* nghttp2_strerror(int lib_error_code);
...
@@ -1765,7 +1765,11 @@ const char* nghttp2_strerror(int lib_error_code);
* value and :macro:`NGHTTP2_PRI_LOWEST` is the lowest value.
* value and :macro:`NGHTTP2_PRI_LOWEST` is the lowest value.
*
*
* The |nva| is an array of name/value pair :type:`nghttp2_nv` with
* The |nva| is an array of name/value pair :type:`nghttp2_nv` with
* |nvlen| elements.
* |nvlen| elements. The value is opaque sequence of bytes and
* therefore can contain NULL byte (0x0). If the application requires
* that the ordering of values for a single header field name
* appearing in different header fields, it has to concatenate them
* using NULL byte (0x0) before passing them to this function.
*
*
* HTTP/2.0 specification has requirement about header fields in the
* HTTP/2.0 specification has requirement about header fields in the
* request HEADERS. See the specification for more details.
* request HEADERS. See the specification for more details.
...
@@ -1818,7 +1822,11 @@ int nghttp2_submit_request(nghttp2_session *session, int32_t pri,
...
@@ -1818,7 +1822,11 @@ int nghttp2_submit_request(nghttp2_session *session, int32_t pri,
* frames against the stream |stream_id|.
* frames against the stream |stream_id|.
*
*
* The |nva| is an array of name/value pair :type:`nghttp2_nv` with
* The |nva| is an array of name/value pair :type:`nghttp2_nv` with
* |nvlen| elements.
* |nvlen| elements. The value is opaque sequence of bytes and
* therefore can contain NULL byte (0x0). If the application requires
* that the ordering of values for a single header field name
* appearing in different header fields, it has to concatenate them
* using NULL byte (0x0) before passing them to this function.
*
*
* HTTP/2.0 specification has requirement about header fields in the
* HTTP/2.0 specification has requirement about header fields in the
* response HEADERS. See the specification for more details.
* response HEADERS. See the specification for more details.
...
@@ -1876,7 +1884,11 @@ int nghttp2_submit_response(nghttp2_session *session,
...
@@ -1876,7 +1884,11 @@ int nghttp2_submit_response(nghttp2_session *session,
* The |pri| is priority of this request.
* The |pri| is priority of this request.
*
*
* The |nva| is an array of name/value pair :type:`nghttp2_nv` with
* The |nva| is an array of name/value pair :type:`nghttp2_nv` with
* |nvlen| elements.
* |nvlen| elements. The value is opaque sequence of bytes and
* therefore can contain NULL byte (0x0). If the application requires
* that the ordering of values for a single header field name
* appearing in different header fields, it has to concatenate them
* using NULL byte (0x0) before passing them to this function.
*
*
* This function creates copies of all name/value pairs in |nva|. It
* This function creates copies of all name/value pairs in |nva|. It
* also lower-cases all names in |nva|.
* also lower-cases all names in |nva|.
...
@@ -2012,7 +2024,11 @@ int nghttp2_submit_settings(nghttp2_session *session, uint8_t flags,
...
@@ -2012,7 +2024,11 @@ int nghttp2_submit_settings(nghttp2_session *session, uint8_t flags,
* The |stream_id| must be client initiated stream ID.
* The |stream_id| must be client initiated stream ID.
*
*
* The |nva| is an array of name/value pair :type:`nghttp2_nv` with
* The |nva| is an array of name/value pair :type:`nghttp2_nv` with
* |nvlen| elements.
* |nvlen| elements. The value is opaque sequence of bytes and
* therefore can contain NULL byte (0x0). If the application requires
* that the ordering of values for a single header field name
* appearing in different header fields, it has to concatenate them
* using NULL byte (0x0) before passing them to this function.
*
*
* This function creates copies of all name/value pairs in |nva|. It
* This function creates copies of all name/value pairs in |nva|. It
* also lower-cases all names in |nva|.
* also lower-cases all names in |nva|.
...
...
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