Aug_23_2023-Dev

This commit is contained in:
Ned Wright
2023-08-23 14:15:32 +00:00
parent 702c1184ea
commit b25fd8def5
115 changed files with 8292 additions and 1189 deletions

View File

@@ -94,7 +94,7 @@ public:
int res = send(socket_int, data.data() + bytes_sent, data.size() - bytes_sent, MSG_NOSIGNAL);
if (res <= 0) {
dbgWarning(D_SOCKET) << "Failed to send data";
dbgWarning(D_SOCKET) << "Failed to send data, Error: " << strerror(errno);
return false;
}