aboutsummaryrefslogtreecommitdiff
path: root/src/microspdy/stream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microspdy/stream.h')
-rw-r--r--src/microspdy/stream.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/microspdy/stream.h b/src/microspdy/stream.h
index a795ad28..de51077a 100644
--- a/src/microspdy/stream.h
+++ b/src/microspdy/stream.h
@@ -60,6 +60,17 @@ SPDYF_stream_destroy(struct SPDYF_Stream *stream);
60 * @param response_queue sent for this stream 60 * @param response_queue sent for this stream
61 */ 61 */
62void 62void
63SPDYF_stream_set_flags(struct SPDYF_Response_Queue *response_queue); 63SPDYF_stream_set_flags_on_write(struct SPDYF_Response_Queue *response_queue);
64
65
66/**
67 * Find and return a session's stream, based on stream's ID.
68 *
69 * @param stream_id to search for
70 * @param session whose streams are considered
71 * @return SPDY_Stream with the desired ID. Can be NULL.
72 */
73struct SPDYF_Stream *
74SPDYF_stream_find(uint32_t stream_id, struct SPDY_Session * session);
64 75
65#endif 76#endif