diff options
Diffstat (limited to 'ext/socket')
-rw-r--r-- | ext/socket/socket.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/ext/socket/socket.c b/ext/socket/socket.c index a89e8f910..1c671fdb6 100644 --- a/ext/socket/socket.c +++ b/ext/socket/socket.c @@ -163,23 +163,6 @@ ruby_getaddrinfo(nodename, servname, hints, res) #define close closesocket #endif -#ifdef NT -static void sock_finalize _((OpenFile *fptr)); - -static void -sock_finalize(fptr) - OpenFile *fptr; -{ - SOCKET s; - - if (!fptr->f) return; - s = get_osfhandle(fileno(fptr->f)); - rb_w32_fdclose(fptr->f); - if (fptr->f2) rb_w32_fdclose(fptr->f2); - closesocket(s); -} -#endif - static VALUE init_sock(sock, fd) VALUE sock; @@ -189,9 +172,6 @@ init_sock(sock, fd) MakeOpenFile(sock, fp); fp->f = rb_fdopen(fd, "r"); -#ifdef NT - fp->finalize = sock_finalize; -#endif fp->f2 = rb_fdopen(fd, "w"); fp->mode = FMODE_READWRITE; rb_io_synchronized(fp); |