1999-03-15 Mark Kettenis <kettenis@gnu.org>
authorRoland McGrath <roland@gnu.org>
Mon, 15 Mar 1999 14:33:27 +0000 (14:33 +0000)
committerRoland McGrath <roland@gnu.org>
Mon, 15 Mar 1999 14:33:27 +0000 (14:33 +0000)
* sysdeps/mach/hurd/poll.c (__poll): Correctly pass NULL to
_hurd_select if TIMEMOUT is -1.

1999-03-15  Mark Kettenis  <kettenis@gnu.org>

* sysdeps/mach/hurd/recvfrom.c (recvfrom): Allow ADDR to be NULL.

ChangeLog
sysdeps/mach/hurd/recvfrom.c

index b083279..aa1c414 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+1999-03-15  Mark Kettenis  <kettenis@gnu.org>
+
+       * sysdeps/mach/hurd/poll.c (__poll): Correctly pass NULL to
+       _hurd_select if TIMEMOUT is -1.
+
+1999-03-15  Mark Kettenis  <kettenis@gnu.org>
+
+       * sysdeps/mach/hurd/recvfrom.c (recvfrom): Allow ADDR to be NULL.
+
 1999-03-15  Ulrich Drepper  <drepper@cygnus.com>
 
        * elf/dl-load.c: Compute rtld_search_dir array size correctly.
index ab41612..b395286 100644 (file)
 #include <hurd/fd.h>
 #include <hurd/socket.h>
 
-/* Read N bytes into BUF through socket FD from peer
-   at address ADDR (which is ADDR_LEN bytes long).
-   Returns the number read or -1 for errors.  */
+/* Read N bytes into BUF through socket FD.
+   If ADDR is not NULL, fill in *ADDR_LEN bytes of it with tha address of
+   the sender, and store the actual size of the address in *ADDR_LEN.
+   Returns the number of bytes read or -1 for errors.  */
 int
 recvfrom (fd, buf, n, flags, addrarg, addr_len)
      int fd;
@@ -53,37 +54,43 @@ recvfrom (fd, buf, n, flags, addrarg, addr_len)
                                               n)))
     return __hurd_dfail (fd, err);
 
-  /* Get address data for the returned address port.  */
-  {
-    char *buf = (char *) addr;
-    mach_msg_type_number_t buflen = *addr_len;
-    int type;
+  /* Get address data for the returned address port if requested.  */
+  if (addr != NULL)
+    {
+      char *buf = (char *) addr;
+      mach_msg_type_number_t buflen = *addr_len;
+      int type;
+
+      err = __socket_whatis_address (addrport, &type, &buf, &buflen);
+      if (err == EOPNOTSUPP)
+       /* If the protocol server can't tell us the address, just return a
+          zero-length one.  */
+       {
+         buf = (char *)addr;
+         buflen = 0;
+         err = 0;
+       }
 
-    err = __socket_whatis_address (addrport, &type, &buf, &buflen);
-    if (err == EOPNOTSUPP)
-      /* If the protocol server can't tell us the address, just return a
-        zero-length one.  */
-      {
-       buf = (char *)addr;
-       buflen = 0;
-       err = 0;
-      }
-    __mach_port_deallocate (__mach_task_self (), addrport);
-    if (err)
-      return __hurd_dfail (fd, err);
+      if (err)
+       {
+         __mach_port_deallocate (__mach_task_self (), addrport);
+         return __hurd_dfail (fd, err);
+       }
+      
+      if (*addr_len > buflen)
+       *addr_len = buflen;
 
-    if (*addr_len > buflen)
-      *addr_len = buflen;
-    
-    if (buf != (char *) addr)
-      {
-       memcpy (addr, buf, *addr_len);
-       __vm_deallocate (__mach_task_self (), (vm_address_t) buf, buflen);
-      }
+      if (buf != (char *) addr)
+       {
+         memcpy (addr, buf, *addr_len);
+         __vm_deallocate (__mach_task_self (), (vm_address_t) buf, buflen);
+       }
+
+      if (buflen > 0)
+       addr->sa_family = type;
+    }
 
-    if (buflen > 0)
-      addr->sa_family = type;
-  }
+  __mach_port_deallocate (__mach_task_self (), addrport);
 
   /* Toss control data; we don't care.  */
   __vm_deallocate (__mach_task_self (), (vm_address_t) cdata, clen);