diff options
Diffstat (limited to 'src/microspdy/session.h')
-rw-r--r-- | src/microspdy/session.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microspdy/session.h b/src/microspdy/session.h index cdfa8d15..6af1ad95 100644 --- a/src/microspdy/session.h +++ b/src/microspdy/session.h | |||
@@ -160,14 +160,14 @@ SPDYF_prepare_goaway (struct SPDY_Session *session, | |||
160 | * will be discarded soon. | 160 | * will be discarded soon. |
161 | * | 161 | * |
162 | * @param session SPDY session | 162 | * @param session SPDY session |
163 | * @param stream_id stream to terminate | 163 | * @param stream stream to terminate |
164 | * @param status code for the RST_STREAM frame | 164 | * @param status code for the RST_STREAM frame |
165 | * @return SPDY_NO on memory error or | 165 | * @return SPDY_NO on memory error or |
166 | * SPDY_YES on success | 166 | * SPDY_YES on success |
167 | */ | 167 | */ |
168 | int | 168 | int |
169 | SPDYF_prepare_rst_stream (struct SPDY_Session *session, | 169 | SPDYF_prepare_rst_stream (struct SPDY_Session *session, |
170 | uint32_t stream_id, | 170 | struct SPDYF_Stream * stream, |
171 | enum SPDY_RST_STREAM_STATUS status); | 171 | enum SPDY_RST_STREAM_STATUS status); |
172 | 172 | ||
173 | 173 | ||