Differences From Artifact [6382beb2ce]:
- File
src/OFTCPSocket.h
— part of check-in
[80e1a9655b]
at
2015-06-17 22:11:31
on branch trunk
— Add OF_NULLABLE_PROPERTY
This is necessary to make GCC (>= 4.6 and Apple GCC) happy as they don't
like the list of property attributes ending in a comma. (user: js, size: 7901) [annotate] [blame] [check-ins using]
To Artifact [0973528b48]:
- File
src/OFTCPSocket.h
— part of check-in
[cec0f072f8]
at
2016-01-03 00:43:58
on branch 0.8
— Update copyright
While at it, also update the mail address. (user: js, size: 7972) [annotate] [blame] [check-ins using]
1 | 1 2 3 4 5 6 7 8 9 10 | - - + + | /* |
| ︙ | |||
61 62 63 64 65 66 67 68 69 70 71 72 73 74 | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | + + + |
@interface OFTCPSocket: OFStreamSocket
{
bool _listening;
struct sockaddr *_address;
socklen_t _addressLength;
OFString *_SOCKS5Host;
uint16_t _SOCKS5Port;
#ifdef __wii__
bool _keepAliveEnabled, _TCPNoDelayEnabled;
#endif
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, getter=isListening) bool listening;
@property OF_NULLABLE_PROPERTY (copy) OFString *SOCKS5Host;
@property uint16_t SOCKS5Port;
@property (getter=isKeepAliveEnabled) bool keepAliveEnabled;
|
| ︙ |