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
3a4c8bc8
Commit
3a4c8bc8
authored
May 19, 2015
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Document about small write
parent
fe752174
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
+18
-0
lib/includes/nghttp2/nghttp2.h
lib/includes/nghttp2/nghttp2.h
+18
-0
No files found.
lib/includes/nghttp2/nghttp2.h
View file @
3a4c8bc8
...
@@ -1141,6 +1141,15 @@ typedef union {
...
@@ -1141,6 +1141,15 @@ typedef union {
*
*
* To set this callback to :type:`nghttp2_session_callbacks`, use
* To set this callback to :type:`nghttp2_session_callbacks`, use
* `nghttp2_session_callbacks_set_send_callback()`.
* `nghttp2_session_callbacks_set_send_callback()`.
*
* .. note::
*
* The |length| may be very small. If that is the case, and
* application disables Nagle algorithm (``TCP_NODELAY``), then just
* writing |data| to the network stack leads to very small packet,
* and it is very inefficient. An application should be responsible
* to buffer up small chunks of data as necessary to avoid this
* situation.
*/
*/
typedef
ssize_t
(
*
nghttp2_send_callback
)(
nghttp2_session
*
session
,
typedef
ssize_t
(
*
nghttp2_send_callback
)(
nghttp2_session
*
session
,
const
uint8_t
*
data
,
size_t
length
,
const
uint8_t
*
data
,
size_t
length
,
...
@@ -2249,6 +2258,15 @@ NGHTTP2_EXTERN int nghttp2_session_send(nghttp2_session *session);
...
@@ -2249,6 +2258,15 @@ NGHTTP2_EXTERN int nghttp2_session_send(nghttp2_session *session);
*
*
* :enum:`NGHTTP2_ERR_NOMEM`
* :enum:`NGHTTP2_ERR_NOMEM`
* Out of memory.
* Out of memory.
*
* .. note::
*
* This function may produce very small byte string. If that is the
* case, and application disables Nagle algorithm (``TCP_NODELAY``),
* then writing this small chunk leads to very small packet, and it
* is very inefficient. An application should be responsible to
* buffer up small chunks of data as necessary to avoid this
* situation.
*/
*/
NGHTTP2_EXTERN
ssize_t
nghttp2_session_mem_send
(
nghttp2_session
*
session
,
NGHTTP2_EXTERN
ssize_t
nghttp2_session_mem_send
(
nghttp2_session
*
session
,
const
uint8_t
**
data_ptr
);
const
uint8_t
**
data_ptr
);
...
...
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