Branch
Hash :
974b4446
Author :
Date :
2025-01-24T20:06:06
tests: Fix a few compilation errors on Solaris 11 OmniOS with gcc 14. * tests/test-accept.c: Omit the signature check on Solaris. * tests/test-gethostname.c: Likewise. * tests/test-getpeername.c: Likewise. * tests/test-getsockname.c: Likewise. * tests/test-getsockopt.c: Likewise. * tests/test-recvfrom.c: Likewise. * doc/posix-functions/accept.texi: Mention the Solaris 11 OmniOS problem. * doc/posix-functions/gethostname.texi: Likewise. * doc/posix-functions/getpeername.texi: Likewise. * doc/posix-functions/getsockname.texi: Likewise. * doc/posix-functions/getsockopt.texi: Likewise. * doc/posix-functions/recvfrom.texi: Likewise.
@node gethostname
@subsection @code{gethostname}
@findex gethostname
POSIX specification:@* @url{https://pubs.opengroup.org/onlinepubs/9799919799/functions/gethostname.html}
Gnulib module: gethostname
@mindex gethostname
Portability problems fixed by Gnulib:
@itemize
@item
This function is declared in @code{<winsock2.h>} instead of @code{<unistd.h>}
on some platforms:
MSVC 14.
@item
On mingw and MSVC 14, this function has a prototype that differs from that
specified by POSIX, and it is defined only in the ws2_32 library.
@end itemize
Portability problems not fixed by Gnulib:
@itemize
@item
This function's second argument type is @code{int} instead of @code{size_t}
on some platforms:
Solaris 10, Solaris 11 OmniOS.
@item
If the given buffer is too small for the host name, some implementations
fail with @code{EINVAL}, instead of returning a truncated host name.
@end itemize