comparison src/http/ngx_http_spdy.c @ 5508:9053fdcea4b7

SPDY: better name for queued frames counter. No functional changes.
author Valentin Bartenev <vbart@nginx.com>
date Tue, 14 Jan 2014 16:24:45 +0400
parents a30bba3c72e8
children 877a7bd72070
comparison
equal deleted inserted replaced
5507:a30bba3c72e8 5508:9053fdcea4b7
2859 r = stream->request; 2859 r = stream->request;
2860 fc = r->connection; 2860 fc = r->connection;
2861 2861
2862 fc->error = 1; 2862 fc->error = 1;
2863 2863
2864 if (stream->waiting) { 2864 if (stream->queued) {
2865 r->blocked -= stream->waiting; 2865 r->blocked -= stream->queued;
2866 stream->waiting = 0; 2866 stream->queued = 0;
2867 2867
2868 ev = fc->write; 2868 ev = fc->write;
2869 ev->delayed = 0; 2869 ev->delayed = 0;
2870 2870
2871 } else { 2871 } else {