]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/mach/hurd/recv.c
send returns ssize_t.
[thirdparty/glibc.git] / sysdeps / mach / hurd / recv.c
1 /* Copyright (C) 1994, 1997, 2001 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
13
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If not,
16 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. */
18
19 #include <errno.h>
20 #include <sys/socket.h>
21 #include <hurd.h>
22 #include <hurd/fd.h>
23 #include <hurd/socket.h>
24 #include <string.h>
25
26 /* Read N bytes into BUF from socket FD.
27 Returns the number read or -1 for errors. */
28
29 /* XXX should be __recv ? */
30 ssize_t
31 recv (fd, buf, n, flags)
32 int fd;
33 void *buf;
34 size_t n;
35 int flags;
36 {
37 error_t err;
38 mach_port_t addrport;
39 char *bufp = buf;
40 mach_msg_type_number_t nread = n;
41 mach_port_t *ports;
42 mach_msg_type_number_t nports;
43 char *cdata = NULL;
44 mach_msg_type_number_t clen = 0;
45
46 if (err = HURD_DPORT_USE (fd, __socket_recv (port, &addrport,
47 flags, &bufp, &nread,
48 &ports, &nports,
49 &cdata, &clen,
50 &flags,
51 n)))
52 return __hurd_dfail (fd, err);
53
54 __mach_port_deallocate (__mach_task_self (), addrport);
55 __vm_deallocate (__mach_task_self (), (vm_address_t) cdata, clen);
56
57 if (bufp != buf)
58 {
59 memcpy (buf, bufp, nread);
60 __vm_deallocate (__mach_task_self (), (vm_address_t) bufp, nread);
61 }
62
63 return nread;
64 }