diff options
| author | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-07-18 22:56:14 +0000 |
|---|---|---|
| committer | Diego Nehab <diego@tecgraf.puc-rio.br> | 2004-07-18 22:56:14 +0000 |
| commit | c8b402e00442cd249397d4d33d2723a1f08a8108 (patch) | |
| tree | d72a1ace55b42aa9d41c741fa2f757d92fad6592 /src/wsocket.c | |
| parent | e4e2223cff658a7016724a625ebbd3dacb92a8f9 (diff) | |
| download | luasocket-c8b402e00442cd249397d4d33d2723a1f08a8108.tar.gz luasocket-c8b402e00442cd249397d4d33d2723a1f08a8108.tar.bz2 luasocket-c8b402e00442cd249397d4d33d2723a1f08a8108.zip | |
Changed send function.
Diffstat (limited to '')
| -rw-r--r-- | src/wsocket.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wsocket.c b/src/wsocket.c index d9da6fc..511dbdc 100644 --- a/src/wsocket.c +++ b/src/wsocket.c | |||
| @@ -373,12 +373,10 @@ static const char *wstrerror(int err) { | |||
| 373 | case WSANOTINITIALISED: | 373 | case WSANOTINITIALISED: |
| 374 | return "Successful WSAStartup not yet performed"; | 374 | return "Successful WSAStartup not yet performed"; |
| 375 | case WSAEDISCON: return "Graceful shutdown in progress"; | 375 | case WSAEDISCON: return "Graceful shutdown in progress"; |
| 376 | case WSATYPE_NOT_FOUND: return "Class type not found"; | ||
| 377 | case WSAHOST_NOT_FOUND: return "Host not found"; | 376 | case WSAHOST_NOT_FOUND: return "Host not found"; |
| 378 | case WSATRY_AGAIN: return "Nonauthoritative host not found"; | 377 | case WSATRY_AGAIN: return "Nonauthoritative host not found"; |
| 379 | case WSANO_RECOVERY: return "Nonrecoverable name lookup error"; | 378 | case WSANO_RECOVERY: return "Nonrecoverable name lookup error"; |
| 380 | case WSANO_DATA: return "Valid name, no data record of requested type"; | 379 | case WSANO_DATA: return "Valid name, no data record of requested type"; |
| 381 | case WSASYSCALLFAILURE: return "System call failure"; | ||
| 382 | default: return "Unknown error"; | 380 | default: return "Unknown error"; |
| 383 | } | 381 | } |
| 384 | } | 382 | } |
