Artifact 21df00d3c4a8e1a2268cfefb8cadafe8732e31d770c0246e9e05795010dc89e0:
- File
src/socket.m
-
2021-01-14 02:29:31
— part of check-in
[1833194867]
on branch trunk
— Define _HPUX_ALT_XOPEN_SOCKET_API where necessary
There is a nasty bug in HP-UX: When using the proper socket APIs that
take a socklen_t (which is 64 bit in LP64 mode), it still calls into
methods that expect an int - so there is a type mismatch between the
headers and the compiled system libraries. This leads to all socklen_t
being interpreted as 0 (due to big endian). Defining
_HPUX_ALT_XOPEN_SOCKET_API makes it use the correct symbols in the
system libraries instead. (user: js, size: 21022) [annotate] [blame] [check-ins using] - 2021-03-30 21:23:18 — part of check-in [564d6d6b6f] on branch 1.0 — Merge trunk into 1.0 branch (user: js, size: 21022) [annotate] [blame] [check-ins using]
-
2021-01-14 02:29:31
— part of check-in
[1833194867]
on branch trunk
— Define _HPUX_ALT_XOPEN_SOCKET_API where necessary