ObjFW  Check-in [08cb210f76]

Overview
Comment:OFTCPSocket: Minor documentation fix
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 08cb210f767df9d552e61ddb79edad00d864aadae63ecb8839b02b445996d93c
User & Date: js on 2022-08-13 14:33:55
Other Links: manifest | tags
Context
2022-08-15
23:02
OF{LHA,Tar,ZIP}Archive: Use URL instead of path check-in: fee2316eca user: js tags: trunk
2022-08-13
14:33
OFTCPSocket: Minor documentation fix check-in: 08cb210f76 user: js tags: trunk
2022-08-11
23:20
OFURLHandler: Minor documentation fix check-in: 0a3a76c56c user: js tags: trunk
Changes

Modified src/OFTCPSocket.h from [fc53b099cc] to [21cfa24eb5].

85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
 * @warning This is not available on the Wii or Nintendo 3DS!
 */
@property (nonatomic) bool sendsKeepAlives;
#endif

#ifndef OF_WII
/**
 * @brief Whether sending segments can be delayed. Setting this to NO sets
 *        TCP_NODELAY on the socket.
 *
 * @warning This is not available on the Wii!
 */
@property (nonatomic) bool canDelaySendingSegments;
#endif








|







85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
 * @warning This is not available on the Wii or Nintendo 3DS!
 */
@property (nonatomic) bool sendsKeepAlives;
#endif

#ifndef OF_WII
/**
 * @brief Whether sending segments can be delayed. Setting this to `false` sets
 *        TCP_NODELAY on the socket.
 *
 * @warning This is not available on the Wii!
 */
@property (nonatomic) bool canDelaySendingSegments;
#endif