mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/win32.c (errmap): add some winsock errors.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10227 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
141295c124
commit
301f4076f8
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Wed Jun 7 14:51:22 2006 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* win32/win32.c (errmap): add some winsock errors.
|
||||
|
||||
Mon Jun 5 18:12:12 2006 Tanaka Akira <akr@m17n.org>
|
||||
|
||||
* ext/socket/socket.c (sock_s_unpack_sockaddr_in): reject
|
||||
|
|
|
@ -171,7 +171,13 @@ static struct {
|
|||
{ ERROR_NESTING_NOT_ALLOWED, EAGAIN },
|
||||
{ ERROR_NOT_ENOUGH_QUOTA, ENOMEM },
|
||||
{ WSAENAMETOOLONG, ENAMETOOLONG },
|
||||
{ WSAENOTEMPTY, ENOTEMPTY }
|
||||
{ WSAENOTEMPTY, ENOTEMPTY },
|
||||
{ WSAEINTR, EINTR },
|
||||
{ WSAEBADF, EBADF },
|
||||
{ WSAEACCES, EACCES },
|
||||
{ WSAEFAULT, EFAULT },
|
||||
{ WSAEINVAL, EINVAL },
|
||||
{ WSAEMFILE, EMFILE },
|
||||
};
|
||||
|
||||
static int
|
||||
|
|
Loading…
Add table
Reference in a new issue