OSDN Git Service

Update README
[linuxjm/LDP_man-pages.git] / original / man2 / connect.2
1 .\" Copyright 1993 Rickard E. Faith (faith@cs.unc.edu)
2 .\" Portions extracted from /usr/include/sys/socket.h, which does not have
3 .\" any authorship information in it.  It is probably available under the GPL.
4 .\"
5 .\" %%%LICENSE_START(VERBATIM)
6 .\" Permission is granted to make and distribute verbatim copies of this
7 .\" manual provided the copyright notice and this permission notice are
8 .\" preserved on all copies.
9 .\"
10 .\" Permission is granted to copy and distribute modified versions of this
11 .\" manual under the conditions for verbatim copying, provided that the
12 .\" entire resulting derived work is distributed under the terms of a
13 .\" permission notice identical to this one.
14 .\"
15 .\" Since the Linux kernel and libraries are constantly changing, this
16 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
17 .\" responsibility for errors or omissions, or for damages resulting from
18 .\" the use of the information contained herein.  The author(s) may not
19 .\" have taken the same level of care in the production of this manual,
20 .\" which is licensed free of charge, as they might when working
21 .\" professionally.
22 .\"
23 .\" Formatted or processed versions of this manual, if unaccompanied by
24 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" %%%LICENSE_END
26 .\"
27 .\"
28 .\" Other portions are from the 6.9 (Berkeley) 3/10/91 man page:
29 .\"
30 .\" Copyright (c) 1983 The Regents of the University of California.
31 .\" All rights reserved.
32 .\"
33 .\" %%%LICENSE_START(BSD_4_CLAUSE_UCB)
34 .\" Redistribution and use in source and binary forms, with or without
35 .\" modification, are permitted provided that the following conditions
36 .\" are met:
37 .\" 1. Redistributions of source code must retain the above copyright
38 .\"    notice, this list of conditions and the following disclaimer.
39 .\" 2. Redistributions in binary form must reproduce the above copyright
40 .\"    notice, this list of conditions and the following disclaimer in the
41 .\"    documentation and/or other materials provided with the distribution.
42 .\" 3. All advertising materials mentioning features or use of this software
43 .\"    must display the following acknowledgement:
44 .\"     This product includes software developed by the University of
45 .\"     California, Berkeley and its contributors.
46 .\" 4. Neither the name of the University nor the names of its contributors
47 .\"    may be used to endorse or promote products derived from this software
48 .\"    without specific prior written permission.
49 .\"
50 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
51 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
52 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
53 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
54 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
55 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
56 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
57 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
58 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
59 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
60 .\" SUCH DAMAGE.
61 .\" %%%LICENSE_END
62 .\"
63 .\" Modified 1997-01-31 by Eric S. Raymond <esr@thyrsus.com>
64 .\" Modified 1998, 1999 by Andi Kleen
65 .\" Modified 2004-06-23 by Michael Kerrisk <mtk.manpages@gmail.com>
66 .\"
67 .TH CONNECT 2 2014-09-06 "Linux" "Linux Programmer's Manual"
68 .SH NAME
69 connect \- initiate a connection on a socket
70 .SH SYNOPSIS
71 .nf
72 .BR "#include <sys/types.h>" "          /* See NOTES */"
73 .br
74 .B #include <sys/socket.h>
75 .sp
76 .BI "int connect(int " sockfd ", const struct sockaddr *" addr ,
77 .BI "            socklen_t " addrlen );
78 .fi
79 .SH DESCRIPTION
80 The
81 .BR connect ()
82 system call connects the socket referred to by the file descriptor
83 .I sockfd
84 to the address specified by
85 .IR addr .
86 The
87 .I addrlen
88 argument specifies the size of
89 .IR addr .
90 The format of the address in
91 .I addr
92 is determined by the address space of the socket
93 .IR sockfd ;
94 see
95 .BR socket (2)
96 for further details.
97
98 If the socket
99 .I sockfd
100 is of type
101 .BR SOCK_DGRAM ,
102 then
103 .I addr
104 is the address to which datagrams are sent by default, and the only
105 address from which datagrams are received.
106 If the socket is of type
107 .B SOCK_STREAM
108 or
109 .BR SOCK_SEQPACKET ,
110 this call attempts to make a connection to the socket that is bound
111 to the address specified by
112 .IR addr .
113 .PP
114 Generally, connection-based protocol sockets may successfully
115 .BR connect ()
116 only once; connectionless protocol sockets may use
117 .BR connect ()
118 multiple times to change their association.
119 Connectionless sockets may
120 dissolve the association by connecting to an address with the
121 .I sa_family
122 member of
123 .I sockaddr
124 set to
125 .BR AF_UNSPEC
126 (supported on Linux since kernel 2.2).
127 .SH RETURN VALUE
128 If the connection or binding succeeds, zero is returned.
129 On error, \-1 is returned, and
130 .I errno
131 is set appropriately.
132 .SH ERRORS
133 The following are general socket errors only.
134 There may be other domain-specific error codes.
135 .TP
136 .B EACCES
137 For UNIX domain sockets, which are identified by pathname:
138 Write permission is denied on the socket file,
139 or search permission is denied for one of the directories
140 in the path prefix.
141 (See also
142 .BR path_resolution (7).)
143 .TP
144 .BR EACCES ", " EPERM
145 The user tried to connect to a broadcast address without having the socket
146 broadcast flag enabled or the connection request failed because of a local
147 firewall rule.
148 .TP
149 .B EADDRINUSE
150 Local address is already in use.
151 .TP
152 .B EADDRNOTAVAIL
153 (Internet domain sockets)
154 The socket referred to by
155 .I sockfd
156 had not previously been bound to an address and,
157 upon attempting to bind it to an ephemeral port,
158 it was determined that all port numbers in the ephemeral port range
159 are currently in use.
160 See the discussion of
161 .I /proc/sys/net/ipv4/ip_local_port_range
162 in
163 .BR ip (7).
164 .TP
165 .B EAFNOSUPPORT
166 The passed address didn't have the correct address family in its
167 .I sa_family
168 field.
169 .TP
170 .B EAGAIN
171 Insufficient entries in the routing cache.
172 .TP
173 .B EALREADY
174 The socket is nonblocking and a previous connection attempt has not yet
175 been completed.
176 .TP
177 .B EBADF
178 The file descriptor is not a valid index in the descriptor table.
179 .TP
180 .B ECONNREFUSED
181 No-one listening on the remote address.
182 .TP
183 .B EFAULT
184 The socket structure address is outside the user's address space.
185 .TP
186 .B EINPROGRESS
187 The socket is nonblocking and the connection cannot be completed
188 immediately.
189 It is possible to
190 .BR select (2)
191 or
192 .BR poll (2)
193 for completion by selecting the socket for writing.
194 After
195 .BR select (2)
196 indicates writability, use
197 .BR getsockopt (2)
198 to read the
199 .B SO_ERROR
200 option at level
201 .B SOL_SOCKET
202 to determine whether
203 .BR connect ()
204 completed successfully
205 .RB ( SO_ERROR
206 is zero) or unsuccessfully
207 .RB ( SO_ERROR
208 is one of the usual error codes listed here,
209 explaining the reason for the failure).
210 .TP
211 .B EINTR
212 The system call was interrupted by a signal that was caught; see
213 .BR signal (7).
214 .\" For TCP, the connection will complete asynchronously.
215 .\" See http://lkml.org/lkml/2005/7/12/254
216 .TP
217 .B EISCONN
218 The socket is already connected.
219 .TP
220 .B ENETUNREACH
221 Network is unreachable.
222 .TP
223 .B ENOTSOCK
224 The file descriptor is not associated with a socket.
225 .TP
226 .B EPROTOTYPE
227 The socket type does not support the requested communications protocol.
228 This error can occur, for example,
229 on an attempt to connect a UNIX domain datagram socket to a stream socket.
230 .TP
231 .B ETIMEDOUT
232 Timeout while attempting connection.
233 The server may be too
234 busy to accept new connections.
235 Note that for IP sockets the timeout may
236 be very long when syncookies are enabled on the server.
237 .SH CONFORMING TO
238 SVr4, 4.4BSD, (the
239 .BR connect ()
240 function first appeared in 4.2BSD), POSIX.1-2001.
241 .\" SVr4 documents the additional
242 .\" general error codes
243 .\" .BR EADDRNOTAVAIL ,
244 .\" .BR EINVAL ,
245 .\" .BR EAFNOSUPPORT ,
246 .\" .BR EALREADY ,
247 .\" .BR EINTR ,
248 .\" .BR EPROTOTYPE ,
249 .\" and
250 .\" .BR ENOSR .
251 .\" It also
252 .\" documents many additional error conditions not described here.
253 .SH NOTES
254 POSIX.1-2001 does not require the inclusion of
255 .IR <sys/types.h> ,
256 and this header file is not required on Linux.
257 However, some historical (BSD) implementations required this header
258 file, and portable applications are probably wise to include it.
259
260 The third argument of
261 .BR connect ()
262 is in reality an
263 .I int
264 (and this is what 4.x BSD and libc4 and libc5 have).
265 Some POSIX confusion resulted in the present
266 .IR socklen_t ,
267 also used by glibc.
268 See also
269 .BR accept (2).
270
271 If
272 .BR connect ()
273 fails, consider the state of the socket as unspecified.
274 Portable applications should close the socket and create a new one for
275 reconnecting.
276 .SH EXAMPLE
277 An example of the use of
278 .BR connect ()
279 is shown in
280 .BR getaddrinfo (3).
281 .SH SEE ALSO
282 .BR accept (2),
283 .BR bind (2),
284 .BR getsockname (2),
285 .BR listen (2),
286 .BR socket (2),
287 .BR path_resolution (7)
288 .SH COLOPHON
289 This page is part of release 3.79 of the Linux
290 .I man-pages
291 project.
292 A description of the project,
293 information about reporting bugs,
294 and the latest version of this page,
295 can be found at
296 \%http://www.kernel.org/doc/man\-pages/.