Commit d39b56ad authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Remove unused nghttp2_stream.blocked_sent

parent 152a20a4
...@@ -48,7 +48,6 @@ void nghttp2_stream_init(nghttp2_stream *stream, int32_t stream_id, ...@@ -48,7 +48,6 @@ void nghttp2_stream_init(nghttp2_stream *stream, int32_t stream_id,
stream->recv_window_size = 0; stream->recv_window_size = 0;
stream->consumed_size = 0; stream->consumed_size = 0;
stream->recv_reduction = 0; stream->recv_reduction = 0;
stream->blocked_sent = 0;
stream->dep_prev = NULL; stream->dep_prev = NULL;
stream->dep_next = NULL; stream->dep_next = NULL;
......
...@@ -183,9 +183,6 @@ struct nghttp2_stream { ...@@ -183,9 +183,6 @@ struct nghttp2_stream {
uint8_t flags; uint8_t flags;
/* Bitwise OR of zero or more nghttp2_shut_flag values */ /* Bitwise OR of zero or more nghttp2_shut_flag values */
uint8_t shut_flags; uint8_t shut_flags;
/* nonzero if blocked was sent and remote_window_size is still 0 or
negative */
uint8_t blocked_sent;
}; };
void nghttp2_stream_init(nghttp2_stream *stream, int32_t stream_id, void nghttp2_stream_init(nghttp2_stream *stream, int32_t stream_id,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment