]> git.saurik.com Git - apple/xnu.git/blame - bsd/man/man2/connect.2
xnu-2782.1.97.tar.gz
[apple/xnu.git] / bsd / man / man2 / connect.2
CommitLineData
9bccf70c
A
1.\" $NetBSD: connect.2,v 1.8 1995/10/12 15:40:48 jtc Exp $
2.\"
3.\" Copyright (c) 1983, 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. All advertising materials mentioning features or use of this software
15.\" must display the following acknowledgement:
16.\" This product includes software developed by the University of
17.\" California, Berkeley and its contributors.
18.\" 4. Neither the name of the University nor the names of its contributors
19.\" may be used to endorse or promote products derived from this software
20.\" without specific prior written permission.
21.\"
22.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32.\" SUCH DAMAGE.
33.\"
34.\" @(#)connect.2 8.1 (Berkeley) 6/4/93
35.\"
36.Dd June 4, 1993
37.Dt CONNECT 2
38.Os BSD 4.2
39.Sh NAME
40.Nm connect
41.Nd initiate a connection on a socket
42.Sh SYNOPSIS
43.Fd #include <sys/types.h>
44.Fd #include <sys/socket.h>
45.Ft int
2d21ac55
A
46.Fo connect
47.Fa "int socket"
48.Fa "const struct sockaddr *address"
49.Fa "socklen_t address_len"
50.Fc
9bccf70c
A
51.Sh DESCRIPTION
52The parameter
2d21ac55 53.Fa socket
9bccf70c
A
54is a socket.
55If it is of type
56.Dv SOCK_DGRAM ,
57this call specifies the peer with which the socket is to be associated;
58this address is that to which datagrams are to be sent,
59and the only address from which datagrams are to be received.
60If the socket is of type
61.Dv SOCK_STREAM ,
62this call attempts to make a connection to
63another socket.
64The other socket is specified by
2d21ac55 65.Fa address ,
9bccf70c 66which is an address in the communications space of the socket.
2d21ac55 67.Pp
9bccf70c 68Each communications space interprets the
2d21ac55 69.Fa address
9bccf70c
A
70parameter in its own way.
71Generally, stream sockets may successfully
72.Fn connect
73only once; datagram sockets may use
74.Fn connect
75multiple times to change their association.
76Datagram sockets may dissolve the association
55e303ae
A
77by connecting to an invalid address, such as a null address
78or an address with
91447636
A
79the address family set to
80.Dv AF_UNSPEC
81(the error
82.Dv EAFNOSUPPORT
83will be harmlessly returned).
9bccf70c 84.Sh RETURN VALUES
2d21ac55
A
85Upon successful completion, a value of 0 is returned.
86Otherwise, a value of -1 is returned and the global integer variable
87.Va errno
88is set to indicate the error.
9bccf70c
A
89.Sh ERRORS
90The
91.Fn connect
2d21ac55 92system call will fail if:
9bccf70c 93.Bl -tag -width Er
2d21ac55
A
94.\" ==========
95.It Bq Er EACCES
96The destination address is a broadcast address and the
97socket option
98.Dv SO_BROADCAST
99is not set.
100.\" ==========
101.It Bq Er EADDRINUSE
102The address is already in use.
103.\" ==========
9bccf70c
A
104.It Bq Er EADDRNOTAVAIL
105The specified address is not available on this machine.
2d21ac55 106.\" ==========
9bccf70c
A
107.It Bq Er EAFNOSUPPORT
108Addresses in the specified address family cannot be used with this socket.
2d21ac55
A
109.\" ==========
110.It Bq Er EALREADY
111The socket is non-blocking
112and a previous connection attempt
113has not yet been completed.
114.\" ==========
115.It Bq Er EBADF
116.Fa socket
117is not a valid descriptor.
118.\" ==========
9bccf70c 119.It Bq Er ECONNREFUSED
2d21ac55
A
120The attempt to connect was ignored
121(because the target is not listening for connections)
122or explicitly rejected.
123.\" ==========
9bccf70c
A
124.It Bq Er EFAULT
125The
2d21ac55 126.Fa address
9bccf70c
A
127parameter specifies an area outside
128the process address space.
2d21ac55
A
129.\" ==========
130.It Bq Er EHOSTUNREACH
131The target host cannot be reached (e.g., down, disconnected).
132.\" ==========
9bccf70c
A
133.It Bq Er EINPROGRESS
134The socket is non-blocking
135and the connection cannot
136be completed immediately.
137It is possible to
138.Xr select 2
139for completion by selecting the socket for writing.
2d21ac55
A
140.\" ==========
141.It Bq Er EINTR
142Its execution was interrupted by a signal.
143.\" ==========
144.It Bq Er EINVAL
145An invalid argument was detected
146(e.g.,
147.Fa address_len
148is not valid for the address family,
149the specified address family is invalid).
150.\" ==========
151.It Bq Er EISCONN
152The socket is already connected.
153.\" ==========
154.It Bq Er ENETDOWN
155The local network interface is not functioning.
156.\" ==========
157.It Bq Er ENETUNREACH
158The network isn't reachable from this host.
159.\" ==========
160.It Bq Er ENOBUFS
161The system call was unable to allocate a needed memory buffer.
162.\" ==========
163.It Bq Er ENOTSOCK
164.Fa socket
165is not a file descriptor for a socket.
166.\" ==========
167.It Bq Er EOPNOTSUPP
168Because
169.Fa socket
170is listening, no connection is allowed.
171.\" ==========
172.It Bq Er EPROTOTYPE
173.Fa address
174has a different type than the socket
175that is bound to the specified peer address.
176.\" ==========
177.It Bq Er ETIMEDOUT
178Connection establishment timed out without establishing a connection.
b0d623f7
A
179.\" ==========
180.It Bq Er ECONNRESET
181Remote host reset the connection request.
9bccf70c
A
182.El
183.Pp
184The following errors are specific to connecting names in the UNIX domain.
185These errors may not apply in future versions of the UNIX IPC domain.
186.Bl -tag -width Er
2d21ac55
A
187.\" ==========
188.It Bq Er EACCES
189Search permission is denied for a component of the path prefix.
190.\" ==========
191.It Bq Er EACCES
192Write access to the named socket is denied.
193.\" ==========
194.It Bq Er EIO
195An I/O error occurred while reading from or writing to the file system.
196.\" ==========
197.It Bq Er ELOOP
198Too many symbolic links were encountered in translating the pathname.
199This is taken to be indicative of a looping symbolic link.
200.\" ==========
9bccf70c
A
201.It Bq Er ENAMETOOLONG
202A component of a pathname exceeded
203.Dv {NAME_MAX}
204characters, or an entire path name exceeded
205.Dv {PATH_MAX}
206characters.
2d21ac55 207.\" ==========
9bccf70c
A
208.It Bq Er ENOENT
209The named socket does not exist.
2d21ac55
A
210.\" ==========
211.It Bq Er ENOTDIR
212A component of the path prefix is not a directory.
9bccf70c 213.El
2d21ac55
A
214.Sh LEGACY SYNOPSIS
215.Fd #include <sys/types.h>
216.Fd #include <sys/socket.h>
217.Pp
218The include file
219.In sys/types.h
220is necessary.
9bccf70c
A
221.Sh SEE ALSO
222.Xr accept 2 ,
2d21ac55 223.Xr getsockname 2 ,
9bccf70c
A
224.Xr select 2 ,
225.Xr socket 2 ,
2d21ac55 226.Xr compat 5
9bccf70c
A
227.Sh HISTORY
228The
229.Fn connect
230function call appeared in
231.Bx 4.2 .