Created
April 17, 2014 17:09
-
-
Save pnegri/10998647 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ESocketErrors getErrors() | |
{ | |
if (serverSocket == NULL) return SE_NO_ERROR; | |
// HotFix for 316 (Unkown error) | |
if (errno == 316) errno = 0; | |
return ISocketSubsystem::Get()->GetLastErrorCode(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment