Differences From Artifact [ae1adc1c6f]:
- File src/OFSPXSocket.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: 5533) [annotate] [blame] [check-ins using] [more...]
To Artifact [065d8595f7]:
- File
src/OFSPXSocket.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: 5546) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
68 69 70 71 72 73 74 |
* use @ref OFSPXStreamSocket 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 OFSPXSocket: OFSequencedPacketSocket
{
| | | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
* use @ref OFSPXStreamSocket 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 OFSPXSocket: OFSequencedPacketSocket
{
OF_RESERVE_IVARS(OFSPXSocket, 4)
}
/*!
* @brief The delegate for asynchronous operations on the socket.
*
* @note The delegate is retained for as long as asynchronous operations are
* still ongoing.
|
| ︙ | ︙ |