]> git.kaiwu.me - nginx.git/commitdiff
SPDY: better name for flag that indicates incomplete frame state.
authorValentin Bartenev <vbart@nginx.com>
Tue, 14 Jan 2014 12:24:45 +0000 (16:24 +0400)
committerValentin Bartenev <vbart@nginx.com>
Tue, 14 Jan 2014 12:24:45 +0000 (16:24 +0400)
No functional changes.

src/http/ngx_http_spdy.c
src/http/ngx_http_spdy.h

index 034d82de8681329355d25d986651f5476f4b03f3..f68b82ff4b6b1cdca23ea54d72566b4bb036c640 100644 (file)
@@ -346,7 +346,7 @@ ngx_http_spdy_read_handler(ngx_event_t *rev)
             break;
         }
 
-        if (n == 0 && (sc->waiting || sc->processing)) {
+        if (n == 0 && (sc->incomplete || sc->processing)) {
             ngx_log_error(NGX_LOG_INFO, c->log, 0,
                           "client closed prematurely connection");
         }
@@ -360,7 +360,7 @@ ngx_http_spdy_read_handler(ngx_event_t *rev)
         end += n;
 
         sc->buffer_used = 0;
-        sc->waiting = 0;
+        sc->incomplete = 0;
 
         do {
             p = sc->handler(sc, p, end);
@@ -567,7 +567,7 @@ ngx_http_spdy_handle_connection(ngx_http_spdy_connection_t *sc)
 
     sscf = ngx_http_get_module_srv_conf(sc->http_connection->conf_ctx,
                                         ngx_http_spdy_module);
-    if (sc->waiting) {
+    if (sc->incomplete) {
         ngx_add_timer(c->read, sscf->recv_timeout);
         return;
     }
@@ -1489,7 +1489,7 @@ ngx_http_spdy_state_save(ngx_http_spdy_connection_t *sc,
 
     sc->buffer_used = end - pos;
     sc->handler = handler;
-    sc->waiting = 1;
+    sc->incomplete = 1;
 
     return end;
 }
index d763c38bfcf815505e7a0288a31fc453f7b2e9cd..d294a665e9fdcd6f4658696e2e0653fbc79aea7a 100644 (file)
@@ -107,7 +107,7 @@ struct ngx_http_spdy_connection_s {
     ngx_uint_t                       last_sid;
 
     unsigned                         blocked:1;
-    unsigned                         waiting:1; /* FIXME better name */
+    unsigned                         incomplete:1;
 };