From f91fb39908772f8d4be665de113ea4e8c4339e11 Mon Sep 17 00:00:00 2001 From: ruti <> Date: Tue, 24 Jun 2025 10:48:28 +0300 Subject: [PATCH] Fix auto 69046c1 --- extend.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extend.c b/extend.c index 0337378..e493d42 100644 --- a/extend.c +++ b/extend.c @@ -461,7 +461,7 @@ static int setup_conn(struct eval *client, const char *buffer, ssize_t n) LOG(LOG_E, "drop connection\n"); return -1; } - if ((params.auto_level & AUTO_POST) && params.dp->next) { + if ((params.auto_level & (AUTO_POST | AUTO_RECONN)) && params.dp->next) { client->mark = is_tls_chello(buffer, n); } client->dp = dp;