Re: [ID 20010303.009] SOCKS5 work around breaks other sockets
authorJens Hamisch <jens@Strawberry.COM>
Fri, 27 Apr 2001 17:00:36 +0000 (19:00 +0200)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 30 Apr 2001 12:29:21 +0000 (12:29 +0000)
Message-ID: <20010427170036.K1372@Strawberry.COM>

SOCKS5_VERSION_NAME is the right symbol to detect
the presence of SOCKS5.  (HAS_SOCKS5_INIT is telling whether
function called socks5_init() is available, and even that is
not universal, most SOCKS5 installations use SOCKSinit()).

p4raw-id: //depot/perl@9914

perlio.c

index 13ef151..3f15c4e 100644 (file)
--- a/perlio.c
+++ b/perlio.c
@@ -2187,13 +2187,13 @@ IV
 PerlIOStdio_close(PerlIO *f)
 {
  dTHX;
-#ifdef HAS_SOCKS5_INIT
+#ifdef SOCKS5_VERSION_NAME
  int optval;
  Sock_size_t optlen = sizeof(int);
 #endif
  FILE *stdio = PerlIOSelf(f,PerlIOStdio)->stdio;
  return(
-#ifdef HAS_SOCKS5_INIT
+#ifdef SOCKS5_VERSION_NAME
    (getsockopt(PerlIO_fileno(f), SOL_SOCKET, SO_TYPE, (void *)&optval, &optlen) < 0) ?
        PerlSIO_fclose(stdio) :
        close(PerlIO_fileno(f))