mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-16 01:22:18 +03:00
This reworks doc that was added on 2008-09-29. * doc/posix-functions/select.texi: Fix copy-and-paste mistake and use clearer wording. * doc/posix-functions/accept.texi: Use clearer wording. * doc/posix-functions/bind.texi: Likewise. * doc/posix-functions/connect.texi: Likewise. * doc/posix-functions/getpeername.texi: Likewise. * doc/posix-functions/getsockname.texi: Likewise. * doc/posix-functions/getsockopt.texi: Likewise. * doc/posix-functions/ioctl.texi: Likewise. * doc/posix-functions/listen.texi: Likewise. * doc/posix-functions/recv.texi: Likewise. * doc/posix-functions/recvfrom.texi: Likewise. * doc/posix-functions/send.texi: Likewise. * doc/posix-functions/sendto.texi: Likewise. * doc/posix-functions/setsockopt.texi: Likewise. * doc/posix-functions/shutdown.texi: Likewise. * doc/posix-functions/socket.texi: Likewise.
31 lines
806 B
Plaintext
31 lines
806 B
Plaintext
@node getsockopt
|
|
@section @code{getsockopt}
|
|
@findex getsockopt
|
|
|
|
POSIX specification:@* @url{http://www.opengroup.org/onlinepubs/9699919799/functions/getsockopt.html}
|
|
|
|
Gnulib module: getsockopt
|
|
|
|
Portability problems fixed by Gnulib:
|
|
@itemize
|
|
@item
|
|
On Windows platforms (excluding Cygwin), error codes from this function
|
|
are not placed in @code{errno}, and @code{WSAGetLastError} must be used
|
|
instead.
|
|
@end itemize
|
|
|
|
Portability problems not fixed by Gnulib:
|
|
@itemize
|
|
@item
|
|
This function is missing on some platforms:
|
|
BeOS.
|
|
@item
|
|
Some platforms don't have a @code{socklen_t} type; in this case this function's
|
|
fifth argument type is @samp{int *}.
|
|
@item
|
|
Many socket options are not available on all platforms.
|
|
@item
|
|
BeOS has the @code{setsockopt} function, but not the @code{getsockopt}
|
|
function.
|
|
@end itemize
|