Make GetSocketApiError static

... but only in the header ;)
This commit is contained in:
Lion Kortlepel 2022-05-05 01:54:07 +02:00
parent 27c057c463
commit dab8daa088
No known key found for this signature in database
GPG Key ID: 4322FF2B4C71259B

View File

@ -141,7 +141,7 @@ void Server::SendLarge(std::string Data) {
TCPSend(Data); TCPSend(Data);
} }
static std::string Server::GetSocketApiError() { std::string Server::GetSocketApiError() {
// This will provide us with the error code and an error message, all in one. // This will provide us with the error code and an error message, all in one.
// The resulting format is "<CODE> - <MESSAGE>" // The resulting format is "<CODE> - <MESSAGE>"
int err; int err;