Differences From Artifact [494885f162]:
- File
src/OFSequencedPacketSocket.m
— part of check-in
[7460d2ccd8]
at
2024-08-17 17:30:51
on branch trunk
— Delay socket initialization as long as possible
On game consoles, initializing sockets takes a significant amount of
time. When not delaying socket initializing, that time is spent during
startup even when the application might never use sockets.Worse yet, on Amiga, sockets might not be available at all and the
application will fail to start up, even when the application might never
use sockets. (user: js, size: 11719) [annotate] [blame] [check-ins using]
To Artifact [70e9e84ad7]:
- File src/OFSequencedPacketSocket.m — part of check-in [7b0cd744dc] at 2024-08-21 20:14:09 on branch trunk — Make ObjFW compile on macOS/PowerPC 64 (user: js, size: 11730) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
88 89 90 91 92 93 94 | [super dealloc]; } #ifndef OF_WII - (int)of_socketError { int errNo; | | | 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 | [super dealloc]; } #ifndef OF_WII - (int)of_socketError { int errNo; socklen_t len = (socklen_t)sizeof(errNo); if (getsockopt(_socket, SOL_SOCKET, SO_ERROR, (char *)&errNo, &len) != 0) return _OFSocketErrNo(); return errNo; } |
︙ | ︙ |