1 /* Copyright (C) 1992, 1994, 1997, 1999, 2002 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
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 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
20 #include <sys/socket.h>
23 #include <hurd/socket.h>
25 /* Put the local address of FD into *ADDR and its length in *LEN. */
27 __getsockname (fd
, addrarg
, len
)
29 __SOCKADDR_ARG addrarg
;
33 struct sockaddr
*addr
= addrarg
.__sockaddr__
;
34 char *buf
= (char *) addr
;
35 mach_msg_type_number_t buflen
= *len
;
39 if (err
= HURD_DPORT_USE (fd
, __socket_name (port
, &aport
)))
40 return __hurd_dfail (fd
, err
);
42 err
= __socket_whatis_address (aport
, &type
, &buf
, &buflen
);
43 __mach_port_deallocate (__mach_task_self (), aport
);
46 return __hurd_dfail (fd
, err
);
51 if (buf
!= (char *) addr
)
53 memcpy (addr
, buf
, *len
);
54 __vm_deallocate (__mach_task_self (), (vm_address_t
) buf
, buflen
);
57 addr
->sa_family
= type
;
62 weak_alias (__getsockname
, getsockname
)