4a75a22c7f2c1ac983d6ddf47a2a5e146c388529
[dragonfly.git] / lib / libc / sys / connect.2
1 .\" Copyright (c) 1983, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. All advertising materials mentioning features or use of this software
13 .\"    must display the following acknowledgement:
14 .\"     This product includes software developed by the University of
15 .\"     California, Berkeley and its contributors.
16 .\" 4. Neither the name of the University nor the names of its contributors
17 .\"    may be used to endorse or promote products derived from this software
18 .\"    without specific prior written permission.
19 .\"
20 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" SUCH DAMAGE.
31 .\"
32 .\"     @(#)connect.2   8.1 (Berkeley) 6/4/93
33 .\" $FreeBSD: src/lib/libc/sys/connect.2,v 1.11.2.8 2003/04/05 16:59:01 ceri Exp $
34 .\" $DragonFly: src/lib/libc/sys/connect.2,v 1.3 2007/07/30 22:11:33 swildner Exp $
35 .\"
36 .Dd June 4, 1993
37 .Dt CONNECT 2
38 .Os
39 .Sh NAME
40 .Nm connect
41 .Nd initiate a connection on a socket
42 .Sh LIBRARY
43 .Lb libc
44 .Sh SYNOPSIS
45 .In sys/types.h
46 .In sys/socket.h
47 .Ft int
48 .Fn connect "int s" "const struct sockaddr *name" "socklen_t namelen"
49 .Sh DESCRIPTION
50 The parameter
51 .Fa s
52 is a socket.
53 If it is of type
54 .Dv SOCK_DGRAM ,
55 this call specifies the peer with which the socket is to be associated;
56 this address is that to which datagrams are to be sent,
57 and the only address from which datagrams are to be received.
58 If the socket is of type
59 .Dv SOCK_STREAM ,
60 this call attempts to make a connection to
61 another socket.
62 The other socket is specified by
63 .Fa name ,
64 which is an address in the communications space of the socket.
65 Each communications space interprets the
66 .Fa name
67 parameter in its own way.
68 Generally, stream sockets may successfully
69 .Fn connect
70 only once; datagram sockets may use
71 .Fn connect
72 multiple times to change their association.
73 Datagram sockets may dissolve the association
74 by connecting to an invalid address, such as a null address.
75 .Sh RETURN VALUES
76 .Rv -std connect
77 .Sh ERRORS
78 The
79 .Fn connect
80 call fails if:
81 .Bl -tag -width Er
82 .It Bq Er EBADF
83 .Fa s
84 is not a valid descriptor.
85 .It Bq Er ENOTSOCK
86 .Fa s
87 is a descriptor for a file, not a socket.
88 .It Bq Er EADDRNOTAVAIL
89 The specified address is not available on this machine.
90 .It Bq Er EAFNOSUPPORT
91 Addresses in the specified address family cannot be used with this socket.
92 .It Bq Er EISCONN
93 The socket is already connected.
94 .It Bq Er ETIMEDOUT
95 Connection establishment timed out without establishing a connection.
96 .It Bq Er ECONNREFUSED
97 The attempt to connect was forcefully rejected.
98 .It Bq Er ENETUNREACH
99 The network is not reachable from this host.
100 .It Bq Er EHOSTUNREACH
101 The remote host is not reachable from this host.
102 .It Bq Er EADDRINUSE
103 The address is already in use.
104 .It Bq Er EFAULT
105 The
106 .Fa name
107 parameter specifies an area outside
108 the process address space.
109 .It Bq Er EINPROGRESS
110 The socket is non-blocking
111 and the connection cannot
112 be completed immediately.
113 It is possible to
114 .Xr select 2
115 for completion by selecting the socket for writing.
116 .It Bq Er EALREADY
117 The socket is non-blocking
118 and a previous connection attempt
119 has not yet been completed.
120 .El
121 .Pp
122 The following errors are specific to connecting names in the
123 .Ux
124 domain.
125 These errors may not apply in future versions of the
126 .Ux
127 IPC domain.
128 .Bl -tag -width Er
129 .It Bq Er ENOTDIR
130 A component of the path prefix is not a directory.
131 .It Bq Er ENAMETOOLONG
132 A component of a pathname exceeded 255 characters,
133 or an entire path name exceeded 1023 characters.
134 .It Bq Er ENOENT
135 The named socket does not exist.
136 .It Bq Er EACCES
137 Search permission is denied for a component of the path prefix.
138 .It Bq Er EACCES
139 Write access to the named socket is denied.
140 .It Bq Er ELOOP
141 Too many symbolic links were encountered in translating the pathname.
142 .El
143 .Sh SEE ALSO
144 .Xr accept 2 ,
145 .Xr getpeername 2 ,
146 .Xr getsockname 2 ,
147 .Xr select 2 ,
148 .Xr socket 2
149 .Sh HISTORY
150 The
151 .Fn connect
152 function call appeared in
153 .Bx 4.2 .