Differences From Artifact [fc99b018b5]:
- File src/OFSPXStreamSocket.h — part of check-in [9e03377177] at 2020-05-30 14:35:16 on branch trunk — Remove unnecessary imports of socket.h (user: js, size: 5665) [annotate] [blame] [check-ins using] [more...]
To Artifact [4742a48553]:
- File
src/OFSPXStreamSocket.h
— part of check-in
[ef614a225d]
at
2020-09-26 21:58:39
on branch trunk
— Don't require __COUNTER__ for OF_RESERVE_IVARS
__COUNTER__ does not exist in GCC 4.2, and Apple GCC 4.2 is still the
newest compiler available for macOS 10.5. (user: js, size: 5684) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
70 71 72 73 74 75 76 | * use @ref OFSPXSocket instead. * * To connect to a server, create a socket and connect it. * To create a server, create a socket, bind it and listen on it. */ @interface OFSPXStreamSocket: OFStreamSocket { | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | * use @ref OFSPXSocket instead. * * To connect to a server, create a socket and connect it. * To create a server, create a socket, bind it and listen on it. */ @interface OFSPXStreamSocket: OFStreamSocket { OF_RESERVE_IVARS(OFSPXStreamSocket, 4) } /*! * @brief The delegate for asynchronous operations on the socket. * * @note The delegate is retained for as long as asynchronous operations are * still ongoing. |
︙ | ︙ |