mirror of
https://github.com/lunarmodules/luasocket.git
synced 2025-01-30 16:42:50 +01:00
Merge pull request #8 from sam-github/fix-confusing-servname-reference
Reword error msg to distinguish between service and server
This commit is contained in:
commit
3d3e69c6e4
@ -439,12 +439,12 @@ const char *socket_gaistrerror(int err) {
|
|||||||
case EAI_FAMILY: return "ai_family not supported";
|
case EAI_FAMILY: return "ai_family not supported";
|
||||||
case EAI_MEMORY: return "memory allocation failure";
|
case EAI_MEMORY: return "memory allocation failure";
|
||||||
case EAI_NONAME:
|
case EAI_NONAME:
|
||||||
return "hostname or servname not provided, or not known";
|
return "host or service not provided, or not known";
|
||||||
case EAI_OVERFLOW: return "argument buffer overflow";
|
case EAI_OVERFLOW: return "argument buffer overflow";
|
||||||
#ifdef EAI_PROTOCOL
|
#ifdef EAI_PROTOCOL
|
||||||
case EAI_PROTOCOL: return "resolved protocol is unknown";
|
case EAI_PROTOCOL: return "resolved protocol is unknown";
|
||||||
#endif
|
#endif
|
||||||
case EAI_SERVICE: return "servname not supported for socktype";
|
case EAI_SERVICE: return "service not supported for socket type";
|
||||||
case EAI_SOCKTYPE: return "ai_socktype not supported";
|
case EAI_SOCKTYPE: return "ai_socktype not supported";
|
||||||
case EAI_SYSTEM: return strerror(errno);
|
case EAI_SYSTEM: return strerror(errno);
|
||||||
default: return "unknown error";
|
default: return "unknown error";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user