summaryrefslogtreecommitdiff
path: root/src/connections.c
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2019-02-12 22:51:17 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2019-02-12 22:51:17 -0500
commit4713b6a61c1cca0d23a874e68c03b70741c1865f (patch)
tree82b443011d4590971874aaf492189db81edc0306 /src/connections.c
parentd28bac32fef755997b720f6f2cd5962cb1cb57d3 (diff)
downloadlighttpd-git-4713b6a61c1cca0d23a874e68c03b70741c1865f.tar.gz
[core] con->is_ssl_sock
flag to indicate if socket protocol is TLS (future use: will be needed with connection upgrade to https; not impl)
Diffstat (limited to 'src/connections.c')
-rw-r--r--src/connections.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/connections.c b/src/connections.c
index b5d27fb0..9fb00839 100644
--- a/src/connections.c
+++ b/src/connections.c
@@ -132,6 +132,7 @@ static int connection_close(server *srv, connection *con) {
"connection closed for fd", con->fd);
}
con->fd = -1;
+ con->is_ssl_sock = 0;
/* plugins should have cleaned themselves up */
for (size_t i = 0; i < srv->plugins.used; ++i) {
@@ -857,7 +858,7 @@ static handler_t connection_handle_fdevent(server *srv, void *context, int reven
joblist_append(srv, con);
- if (con->srv_socket->is_ssl) {
+ if (con->is_ssl_sock) {
/* ssl may read and write for both reads and writes */
if (revents & (FDEVENT_IN | FDEVENT_OUT)) {
con->is_readable = 1;
@@ -1107,6 +1108,7 @@ connection *connection_accepted(server *srv, server_socket *srv_socket, sock_add
con->dst_addr = *cnt_addr;
buffer_copy_string(con->dst_addr_buf, inet_ntop_cache_get_ip(srv, &(con->dst_addr)));
con->srv_socket = srv_socket;
+ con->is_ssl_sock = srv_socket->is_ssl;
config_cond_cache_reset(srv, con);
con->conditional_is_valid[COMP_SERVER_SOCKET] = 1;