New modules 'accept', 'bind', 'connect', 'getpeername', 'getsockname', 'getsockopt...
[gnulib.git] / doc / posix-functions / accept.texi
1 @node accept
2 @section @code{accept}
3 @findex accept
4
5 POSIX specification: @url{http://www.opengroup.org/susv3xsh/accept.html}
6
7 Gnulib module: accept
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 On Windows platforms (excluding Cygwin), the descriptors returned by
13 the @code{accept} function can not be used in calls to @code{read},
14 @code{write}, and @code{close}; you have to use @code{recv}, @code{send},
15 @code{closesocket} in these cases instead.
16 @item
17 On Windows platforms (excluding Cygwin), error codes for @code{accept} are not
18 placed in @code{errno}, and @code{WSAGetLastError} must be used instead.
19 @end itemize
20
21 Portability problems not fixed by Gnulib:
22 @itemize
23 @item
24 On BeOS, the descriptors returned by the @code{accept} function can not be used
25 in calls to @code{read}, @code{write}, and @code{close}; you have to use
26 @code{recv}, @code{send}, @code{closesocket} in these cases instead.
27 @item
28 Some platforms don't have a @code{socklen_t} type; in this case this function's
29 third argument type is @samp{int *}.
30 @end itemize