From 1cc86054902a25c91edfe50bc4b9a5590c175c33 Mon Sep 17 00:00:00 2001 From: Alex Hultman Date: Mon, 8 Jan 2024 21:48:28 +0100 Subject: [PATCH] Disable broken SSL path --- src/AsyncSocket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AsyncSocket.h b/src/AsyncSocket.h index a6b5e1a..2406d64 100644 --- a/src/AsyncSocket.h +++ b/src/AsyncSocket.h @@ -278,7 +278,7 @@ protected: /* Fall through to default return */ } else { /* Strategy differences between SSL and non-SSL regarding syscall minimizing */ - if constexpr (SSL) { + if constexpr (false) { /* Cork up as much as we can */ unsigned int stripped = LoopData::CORK_BUFFER_SIZE - loopData->corkOffset; memcpy(loopData->corkBuffer + loopData->corkOffset, src, stripped);