modified: myjupyterlab.sh
[GalaxyCodeBases.git] / c_cpp / lib / gnulib / doc / posix-functions / accept.texi
blob65dab3719ead156629a9acdb2ba9d9f6c4f41fdd
1 @node accept
2 @section @code{accept}
3 @findex accept
5 POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/accept.html}
7 Gnulib module: accept
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 cannot 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}
18 are not placed in @code{errno}, and @code{WSAGetLastError} must be
19 used instead.
20 @end itemize
22 Portability problems not fixed by Gnulib:
23 @itemize
24 @item
25 On BeOS, the descriptors returned by the @code{accept} function cannot be used
26 in calls to @code{read}, @code{write}, and @code{close}; you have to use
27 @code{recv}, @code{send}, @code{closesocket} in these cases instead.
28 @item
29 Some platforms don't have a @code{socklen_t} type; in this case this function's
30 third argument type is @samp{int *}.
31 @item
32 On some platforms, this function's third argument type is @samp{void *},
33 not @samp{socklen_t *}:
34 Solaris 10.
35 @end itemize