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

View File

@@ -141,7 +141,7 @@ void Server::SendLarge(std::string 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.
// The resulting format is "<CODE> - <MESSAGE>"
int err;