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
3ed2ab24
Commit
3ed2ab24
authored
Feb 28, 2012
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Code cleanup
parent
a4528930
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
lib/includes/spdylay/spdylay.h
lib/includes/spdylay/spdylay.h
+14
-14
No files found.
lib/includes/spdylay/spdylay.h
View file @
3ed2ab24
...
@@ -463,6 +463,20 @@ int spdylay_session_send(spdylay_session *session);
...
@@ -463,6 +463,20 @@ int spdylay_session_send(spdylay_session *session);
*/
*/
int
spdylay_session_recv
(
spdylay_session
*
session
);
int
spdylay_session_recv
(
spdylay_session
*
session
);
/*
* Put back previously deferred DATA frame in the stream |stream_id|
* to outbound queue.
*
* This function returns 0 if it succeeds, or one of the following
* negative error codes:
*
* SPDYLAY_ERR_INVALID_ARGUMENT
* The stream does not exist or no deferred data exist.
* SPDYLAY_ERR_NOMEM
* Out of memory.
*/
int
spdylay_session_resume_data
(
spdylay_session
*
session
,
int32_t
stream_id
);
/*
/*
* Returns nonzero value if |session| want to receive data from the
* Returns nonzero value if |session| want to receive data from the
* remote peer.
* remote peer.
...
@@ -731,20 +745,6 @@ int spdylay_select_next_protocol(unsigned char **out, unsigned char *outlen,
...
@@ -731,20 +745,6 @@ int spdylay_select_next_protocol(unsigned char **out, unsigned char *outlen,
*/
*/
uint16_t
spdylay_npn_get_version
(
const
unsigned
char
*
proto
,
size_t
protolen
);
uint16_t
spdylay_npn_get_version
(
const
unsigned
char
*
proto
,
size_t
protolen
);
/*
* Put back previously deferred DATA frame in the stream |stream_id|
* to outbound queue.
*
* This function returns 0 if it succeeds, or one of the following
* negative error codes:
*
* SPDYLAY_ERR_INVALID_ARGUMENT
* The stream does not exist or no deferred data exist.
* SPDYLAY_ERR_NOMEM
* Out of memory.
*/
int
spdylay_session_resume_data
(
spdylay_session
*
session
,
int32_t
stream_id
);
#ifdef __cplusplus
#ifdef __cplusplus
}
}
#endif
#endif
...
...
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