Skip to content

Commit

Permalink
Disable broken SSL path
Browse files Browse the repository at this point in the history
  • Loading branch information
uNetworkingAB committed Jan 8, 2024
1 parent 9681439 commit 1cc8605
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AsyncSocket.h
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ struct AsyncSocket {
/* 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);
Expand Down

0 comments on commit 1cc8605

Please sign in to comment.