mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* win32/win32.c (StartSockets): iSockOpt is no longer used.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8735 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cff37c6dcc
commit
682d1bb068
1 changed files with 1 additions and 5 deletions
|
@ -1982,7 +1982,6 @@ StartSockets(void)
|
|||
{
|
||||
WORD version;
|
||||
WSADATA retdata;
|
||||
int iSockOpt;
|
||||
|
||||
//
|
||||
// initalize the winsock interface and insure that it's
|
||||
|
@ -2262,7 +2261,6 @@ rb_w32_shutdown(int s, int how)
|
|||
static SOCKET
|
||||
open_ifs_socket(int af, int type, int protocol)
|
||||
{
|
||||
char *s;
|
||||
unsigned long proto_buffers_len = 0;
|
||||
int error_code;
|
||||
SOCKET out = INVALID_SOCKET;
|
||||
|
@ -2280,8 +2278,6 @@ open_ifs_socket(int af, int type, int protocol)
|
|||
if (protocols_available != SOCKET_ERROR) {
|
||||
int i;
|
||||
for (i = 0; i < protocols_available; i++) {
|
||||
WSAPROTOCOL_INFO proto_info;
|
||||
|
||||
if ((af != AF_UNSPEC && af != proto_buffers[i].iAddressFamily) ||
|
||||
(type != proto_buffers[i].iSocketType) ||
|
||||
(protocol != 0 && protocol != proto_buffers[i].iProtocol))
|
||||
|
|
Loading…
Reference in a new issue