diff options
Diffstat (limited to 'src/microspdy/stream.c')
-rw-r--r-- | src/microspdy/stream.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/microspdy/stream.c b/src/microspdy/stream.c index 336672ac..42666960 100644 --- a/src/microspdy/stream.c +++ b/src/microspdy/stream.c | |||
@@ -104,6 +104,7 @@ SPDYF_stream_new (struct SPDY_Session *session) | |||
104 | stream->flag_unidirectional = (frame->flags & SPDY_SYN_STREAM_FLAG_UNIDIRECTIONAL) != 0; | 104 | stream->flag_unidirectional = (frame->flags & SPDY_SYN_STREAM_FLAG_UNIDIRECTIONAL) != 0; |
105 | stream->is_out_closed = stream->flag_unidirectional; | 105 | stream->is_out_closed = stream->flag_unidirectional; |
106 | stream->is_server_initiator = false; | 106 | stream->is_server_initiator = false; |
107 | stream->window_size = SPDYF_INITIAL_WINDOW_SIZE; | ||
107 | 108 | ||
108 | //put the stream to the list of streams for the session | 109 | //put the stream to the list of streams for the session |
109 | DLL_insert(session->streams_head, session->streams_tail, stream); | 110 | DLL_insert(session->streams_head, session->streams_tail, stream); |