__aeabi_ldivmod: fix sign logic
[minix.git] / lib / libc / sys / getsockname.2
blob4443e952671c3f70e6f379095f74147136d7d875
1 .\"     $NetBSD: getsockname.2,v 1.24 2012/07/09 21:22:21 jdf Exp $
2 .\"
3 .\" Copyright (c) 1983, 1991, 1993
4 .\"     The Regents of the University of California.  All rights reserved.
5 .\"
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
8 .\" are met:
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\"    notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\"    notice, this list of conditions and the following disclaimer in the
13 .\"    documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\"    may be used to endorse or promote products derived from this software
16 .\"    without specific prior written permission.
17 .\"
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" SUCH DAMAGE.
29 .\"
30 .\"     @(#)getsockname.2       8.1 (Berkeley) 6/4/93
31 .\"
32 .Dd July 9, 2012
33 .Dt GETSOCKNAME 2
34 .Os
35 .Sh NAME
36 .Nm getsockname
37 .Nd get socket name
38 .Sh LIBRARY
39 .Lb libc
40 .Sh SYNOPSIS
41 .In sys/socket.h
42 .Ft int
43 .Fn getsockname "int s" "struct sockaddr * restrict name" "socklen_t * restrict namelen"
44 .Sh DESCRIPTION
45 .Fn getsockname
46 returns the locally bound address information for a specified socket.
47 .Pp
48 Common uses of this function are as follows:
49 .Bl -bullet
50 .It
51 When
52 .Xr bind 2
53 is called with a port number of 0 (indicating the kernel should pick
54 an ephemeral port)
55 .Fn getsockname
56 is used to retrieve the kernel-assigned port number.
57 .It
58 When a process calls
59 .Xr bind 2
60 on a wildcard IP address,
61 .Fn getsockname
62 is used to retrieve the local IP address for the connection.
63 .It
64 When a function wishes to know the address family of a socket,
65 .Fn getsockname
66 can be used.
67 .El
68 .Pp
69 .Fn getsockname
70 takes three parameters:
71 .Pp
72 .Fa s ,
73 Contains the file descriptor for the socket to be looked up.
74 .Pp
75 .Fa name
76 points to a
77 .Li sockaddr
78 structure which will hold the resulting address information.
79 Normal use requires one to use a structure
80 specific to the protocol family in use, such as
81 .Li sockaddr_in
82 (IPv4) or
83 .Li sockaddr_in6
84 (IPv6), cast to a (struct sockaddr *).
85 .Pp
86 For greater portability (such as newer protocol families) the new
87 structure sockaddr_storage exists.
88 .Li sockaddr_storage
89 is large enough to hold any of the other sockaddr_* variants.
90 On return, it should be cast to the correct sockaddr type,
91 according to the current protocol family.
92 .Pp
93 .Fa namelen
94 indicates the amount of space pointed to by
95 .Fa name ,
96 in bytes.
97 Upon return,
98 .Fa namelen
99 is set to the actual size of the returned address information.
101 If the address of the destination socket for a given socket connection is
102 needed, the
103 .Xr getpeername 2
104 function should be used instead.
107 .Fa name
108 does not point to enough space to hold the entire socket address, the
109 result will be truncated to
110 .Fa namelen
111 bytes.
112 .Sh RETURN VALUES
113 On success,
114 .Fn getsockname
115 returns a 0, and
116 .Fa namelen
117 is set to the actual size of the socket address returned in
118 .Fa name .
119 Otherwise,
120 .Va errno
121 is set, and a value of \-1 is returned.
122 .Sh ERRORS
123 The call succeeds unless:
124 .Bl -tag -width Er
125 .It Bq Er EBADF
126 The argument
127 .Fa s
128 is not a valid descriptor.
129 .It Bq Er ENOTSOCK
130 The argument
131 .Fa s
132 is a file, not a socket.
133 .It Bq Er EINVAL
134 The socket has been shut down.
135 .It Bq Er ENOBUFS
136 Insufficient resources were available in the system to perform the operation.
137 .It Bq Er ENOTCONN
138 The socket is not connected.
139 .It Bq Er EFAULT
141 .Fa name
142 parameter points to memory not in a valid part of the process address space.
144 .Sh SEE ALSO
145 .Xr bind 2 ,
146 .Xr socket 2
147 .Sh HISTORY
149 .Fn getsockname
150 function call appeared in
151 .Bx 4.2 .
152 .Sh BUGS
153 Names bound to sockets in the
155 domain are inaccessible;
156 .Fn getsockname
157 returns a zero length name.