diff options
author | Glenn Strauss <gstrauss@gluelogic.com> | 2019-06-21 07:02:45 -0400 |
---|---|---|
committer | Glenn Strauss <gstrauss@gluelogic.com> | 2020-02-24 11:14:45 -0500 |
commit | 80d12919d131b1f0d59f01e2de0afd12ab9ac601 (patch) | |
tree | c25cd396cea2270915cf38a763c454965a5cd64c /src/connections-glue.c | |
parent | be6964f415b11c19aa1fc13bbbaef1332358d4e1 (diff) | |
download | lighttpd-git-80d12919d131b1f0d59f01e2de0afd12ab9ac601.tar.gz |
[core] replace connection_set_state w/ assignment
replace connection_set_state() with simple assignment
(only connections.c and connections-glue.c should change con state)
Diffstat (limited to 'src/connections-glue.c')
-rw-r--r-- | src/connections-glue.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/connections-glue.c b/src/connections-glue.c index adbb3755..f37f50fc 100644 --- a/src/connections-glue.c +++ b/src/connections-glue.c @@ -45,14 +45,6 @@ const char *connection_get_short_state(connection_state_t state) { } } -int connection_set_state(server *srv, connection *con, connection_state_t state) { - UNUSED(srv); - - con->state = state; - - return 0; -} - static int connection_handle_read_post_cq_compact(chunkqueue *cq) { /* combine first mem chunk with next non-empty mem chunk * (loop if next chunk is empty) */ @@ -389,7 +381,7 @@ static int connection_write_100_continue(server *srv, connection *con) { *(con->conf.global_bytes_per_second_cnt_ptr) += written; if (rc < 0) { - connection_set_state(srv, con, CON_STATE_ERROR); + con->state = CON_STATE_ERROR; return 0; /* error */ } @@ -418,7 +410,7 @@ handler_t connection_handle_read_post_state(server *srv, connection *con) { switch(con->network_read(srv, con, con->read_queue, MAX_READ_LIMIT)) { case -1: - connection_set_state(srv, con, CON_STATE_ERROR); + con->state = CON_STATE_ERROR; return HANDLER_ERROR; case -2: is_closed = 1; @@ -466,7 +458,7 @@ handler_t connection_handle_read_post_state(server *srv, connection *con) { /* Content is ready */ con->conf.stream_request_body &= ~FDEVENT_STREAM_REQUEST_POLLIN; if (con->state == CON_STATE_READ_POST) { - connection_set_state(srv, con, CON_STATE_HANDLE_REQUEST); + con->state = CON_STATE_HANDLE_REQUEST; } return HANDLER_GO_ON; } else if (is_closed) { |