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
e2092966
Commit
e2092966
authored
Mar 08, 2012
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mentioned on_ctrl_not_send_callback in spdylay_session_send doc.
parent
fcde841c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
lib/includes/spdylay/spdylay.h
lib/includes/spdylay/spdylay.h
+9
-6
No files found.
lib/includes/spdylay/spdylay.h
View file @
e2092966
...
...
@@ -481,13 +481,16 @@ void spdylay_session_del(spdylay_session *session);
*
* 1. Get the next frame to send from outbound queue.
* 2. Prepare transmission of the frame.
* 3. If the frame is SYN_STREAM, the stream is opened here.
* 4. before_ctrl_send_callback is invoked.
* 5. send_callback is invoked one or more times (while the frame is
* 3. If the control frame cannot be sent because some preconditions
* are not met (e.g., SYN_STREAM cannot be sent after GOAWAY),
* on_ctrl_not_send_callback is invoked. Skip following steps.
* 4. If the frame is SYN_STREAM, the stream is opened here.
* 5. before_ctrl_send_callback is invoked.
* 6. send_callback is invoked one or more times (while the frame is
* completely sent).
*
6
. If the frame is a control frame, on_ctrl_send_callback is invoked.
*
7
. If the frame is a DATA frame, on_data_send_callback is invoked.
*
8
. If the transmission of the frame triggers closure of the stream,
*
7
. If the frame is a control frame, on_ctrl_send_callback is invoked.
*
8
. If the frame is a DATA frame, on_data_send_callback is invoked.
*
9
. If the transmission of the frame triggers closure of the stream,
* the stream is closed and on_stream_close_callback is invoked.
*
* This function returns 0 if it succeeds, or one of the following
...
...
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