]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/getpeername.2
sched_setattr.2: tfix
[thirdparty/man-pages.git] / man2 / getpeername.2
CommitLineData
fea681da
MK
1.\" Copyright (c) 1983, 1991 The Regents of the University of California.
2.\" All rights reserved.
3.\"
a9cd9cb7 4.\" %%%LICENSE_START(BSD_4_CLAUSE_UCB)
fea681da
MK
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\" notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\" notice, this list of conditions and the following disclaimer in the
12.\" documentation and/or other materials provided with the distribution.
13.\" 3. All advertising materials mentioning features or use of this software
14.\" must display the following acknowledgement:
15.\" This product includes software developed by the University of
16.\" California, Berkeley and its contributors.
17.\" 4. Neither the name of the University nor the names of its contributors
18.\" may be used to endorse or promote products derived from this software
19.\" without specific prior written permission.
20.\"
21.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31.\" SUCH DAMAGE.
8c9302dc 32.\" %%%LICENSE_END
fea681da
MK
33.\"
34.\" @(#)getpeername.2 6.5 (Berkeley) 3/10/91
35.\"
36.\" Modified Sat Jul 24 16:37:50 1993 by Rik Faith <faith@cs.unc.edu>
37.\" Modified Thu Jul 30 14:37:50 1993 by Martin Schulze <joey@debian.org>
38.\" Modified Sun Mar 28 21:26:46 1999 by Andries Brouwer <aeb@cwi.nl>
c11b1abf 39.\" Modified 17 Jul 2002, Michael Kerrisk <mtk.manpages@gmail.com>
fea681da
MK
40.\" Added 'socket' to NAME, so that "man -k socket" will show this page.
41.\"
4b8c67d9 42.TH GETPEERNAME 2 2017-09-15 "Linux" "Linux Programmer's Manual"
fea681da
MK
43.SH NAME
44getpeername \- get name of connected peer socket
45.SH SYNOPSIS
46.B #include <sys/socket.h>
68e4db0a 47.PP
a2b8b6d6
MK
48.BI "int getpeername(int " sockfd ", struct sockaddr *" addr \
49", socklen_t *" addrlen );
fea681da 50.SH DESCRIPTION
7145b9a9 51.BR getpeername ()
0b11419e 52returns the address of the peer connected to the socket
c4e7b714 53.IR sockfd ,
0b11419e 54in the buffer pointed to by
a2b8b6d6 55.IR addr .
fea681da 56The
a2b8b6d6 57.I addrlen
c4bb193f 58argument should be initialized to indicate the amount of space pointed to
fea681da 59by
a2b8b6d6 60.IR addr .
c13182ef
MK
61On return it contains the actual size of the name returned (in bytes).
62The name is truncated if the buffer provided is too small.
efeece04 63.PP
cb159038
MK
64The returned address is truncated if the buffer provided is too small;
65in this case,
a2b8b6d6 66.I addrlen
cb159038 67will return a value greater than was supplied to the call.
47297adb 68.SH RETURN VALUE
c13182ef
MK
69On success, zero is returned.
70On error, \-1 is returned, and
fea681da
MK
71.I errno
72is set appropriately.
73.SH ERRORS
74.TP
75.B EBADF
76The argument
3e4088f4 77.I sockfd
d9cb0d7d 78is not a valid file descriptor.
fea681da
MK
79.TP
80.B EFAULT
c13182ef 81The
a2b8b6d6 82.I addr
c4bb193f 83argument points to memory not in a valid part of the
fea681da
MK
84process address space.
85.TP
16c892d3 86.B EINVAL
a2b8b6d6 87.I addrlen
16c892d3
MK
88is invalid (e.g., is negative).
89.TP
fea681da
MK
90.B ENOBUFS
91Insufficient resources were available in the system
92to perform the operation.
93.TP
94.B ENOTCONN
95The socket is not connected.
96.TP
97.B ENOTSOCK
deedfd97 98The file descriptor
3e4088f4 99.I sockfd
deedfd97 100does not refer to a socket.
47297adb 101.SH CONFORMING TO
209a8546
MK
102POSIX.1-2001, POSIX.1-2008, SVr4, 4.4BSD
103.RB ( getpeername ()
104first appeared in 4.2BSD).
19c98696 105.SH NOTES
ec5df7af
MK
106For background on the
107.I socklen_t
108type, see
fea681da 109.BR accept (2).
efeece04 110.PP
0c56d917
MK
111For stream sockets, once a
112.BR connect (2)
113has been performed, either socket can call
114.BR getpeername ()
115to obtain the address of the peer socket.
116On the other hand, datagram sockets are connectionless.
117Calling
118.BR connect (2)
119on a datagram socket merely sets the peer address for outgoing
120datagrams sent with
121.BR write (2)
122or
123.BR recv (2).
124The caller of
125.BR connect (2)
126can use
127.BR getpeername ()
128to obtain the peer address that it earlier set for the socket.
129However, the peer socket is unaware of this information, and calling
130.BR getpeername ()
131on the peer socket will return no useful information (unless a
132.BR connect (2)
133call was also executed on the peer).
134Note also that the receiver of a datagram can obtain
135the address of the sender when using
136.BR recvfrom (2).
47297adb 137.SH SEE ALSO
fea681da
MK
138.BR accept (2),
139.BR bind (2),
ecae8a08
MK
140.BR getsockname (2),
141.BR ip (7),
5dfedcae 142.BR socket (7),
ecae8a08 143.BR unix (7)