]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
* sunrpc/bindrsvprt.c (LOWPORT): Apparently some mountd
authorUlrich Drepper <drepper@redhat.com>
Mon, 23 May 2005 19:05:24 +0000 (19:05 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 23 May 2005 19:05:24 +0000 (19:05 +0000)
implementations are broken and don't accept ports < 512.

ChangeLog
sunrpc/bindrsvprt.c

index 079bfe5fe8ecd551d51b9ece43be400bfa81b949..212e21874c4224bf6aa20d8a958b393b33a1051c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-05-23  Ulrich Drepper  <drepper@redhat.com>
+
+       * sunrpc/bindrsvprt.c (LOWPORT): Apparently some mountd
+       implementations are broken and don't accept ports < 512.
+
 2005-05-22  Dmitry V. Levin  <ldv@altlinux.org>
 
        [BZ #961]
index 671f229aae7a1a66891913a95927f69905891d35..f58d3b2a8b22bcc3c7f3c406a49515ceb020caf1 100644 (file)
 int
 bindresvport (int sd, struct sockaddr_in *sin)
 {
-  int res;
   static short port;
   struct sockaddr_in myaddr;
   int i;
 
 #define STARTPORT 600
-#define LOWPORT 200
+#define LOWPORT 512
 #define ENDPORT (IPPORT_RESERVED - 1)
 #define NPORTS (ENDPORT - STARTPORT + 1)
   static short startport = STARTPORT;
@@ -70,12 +69,13 @@ bindresvport (int sd, struct sockaddr_in *sin)
     {
       port = (__getpid () % NPORTS) + STARTPORT;
     }
-  res = -1;
-  __set_errno (EADDRINUSE);
+
+  /* Initialize to make gcc happy.  */
+  int res = -1;
 
   int nports = ENDPORT - startport + 1;
  again:
-  for (i = 0; i < nports && res < 0 && errno == EADDRINUSE; ++i)
+  for (i = 0; i < nports; ++i)
     {
       sin->sin_port = htons (port++);
       if (port > ENDPORT)
@@ -83,6 +83,8 @@ bindresvport (int sd, struct sockaddr_in *sin)
          port = startport;
        }
       res = __bind (sd, sin, sizeof (struct sockaddr_in));
+      if (res >= 0 || errno != EADDRINUSE)
+       break;
     }
 
   if (i == nports && startport != LOWPORT)