From fab401343f1b0ccb4f83d81dac66a1e200abcd7a Mon Sep 17 00:00:00 2001 From: jahway603 Date: Fri, 18 Mar 2022 14:43:14 -0400 Subject: [PATCH 1/2] updated AUTHORS file --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index d2d49e2e0..20bd581e2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -2,6 +2,7 @@ Duke Leto https://git.hush.is/duke https://github.com/leto Miodrag https://github.com/miodragpop +jahway603 https://git.hush.is/jahway603 https://github.com/jahway603 # The SuperNET Developers From ccfd17b3b2f1a1e92f64a05fe351e7ee52218c35 Mon Sep 17 00:00:00 2001 From: jahway603 Date: Sun, 27 Mar 2022 00:40:46 -0400 Subject: [PATCH 2/2] minor change --- src/hush/tlsmanager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hush/tlsmanager.cpp b/src/hush/tlsmanager.cpp index c0c280a42..51e2ea064 100644 --- a/src/hush/tlsmanager.cpp +++ b/src/hush/tlsmanager.cpp @@ -619,7 +619,7 @@ int TLSManager::threadSocketHandler(CNode* pnode, fd_set& fdsetRecv, fd_set& fds if (nRet != WOLFSSL_ERROR_WANT_READ && nRet != WOLFSSL_ERROR_WANT_WRITE) { if (!pnode->fDisconnect) - LogPrintf("TSL: ERROR: SSL_read %s\n", ERR_error_string(nRet, NULL)); + LogPrintf("TLS: ERROR: SSL_read %s\n", ERR_error_string(nRet, NULL)); pnode->CloseSocketDisconnect(); unsigned long error = ERR_get_error(); @@ -634,7 +634,7 @@ int TLSManager::threadSocketHandler(CNode* pnode, fd_set& fdsetRecv, fd_set& fds } else { if (nRet != WSAEWOULDBLOCK && nRet != WSAEMSGSIZE && nRet != WSAEINTR && nRet != WSAEINPROGRESS) { if (!pnode->fDisconnect) - LogPrintf("TSL: ERROR: socket recv %s\n", NetworkErrorString(nRet)); + LogPrintf("TLS: ERROR: socket recv %s\n", NetworkErrorString(nRet)); pnode->CloseSocketDisconnect(); } }