Skip to content

Commit

Permalink
SPDY: added a comment about handling stream with the timer set.
Browse files Browse the repository at this point in the history
  • Loading branch information
VBart committed Aug 18, 2014
1 parent c425f19 commit dbcb16f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/http/ngx_http_spdy_filter_module.c
Original file line number Diff line number Diff line change
@@ -1141,6 +1141,11 @@ ngx_http_spdy_handle_stream(ngx_http_spdy_connection_t *sc,

wev = stream->request->connection->write;

/*
* This timer can only be set if the stream was delayed because of rate
* limit. In that case the event should be triggered by the timer.
*/

if (!wev->timer_set) {
wev->delayed = 0;

0 comments on commit dbcb16f

Please sign in to comment.