Differences From Artifact [cc8482609a]:
- File src/OFSocket.h — part of check-in [062a052b50] at 2010-04-17 15:46:34 on branch trunk — Don't return self where not necessary, return void or something useful. (user: js, size: 714) [annotate] [blame] [check-ins using]
To Artifact [c13d8752b7]:
- File src/OFSocket.h — part of check-in [7390eb7270] at 2010-06-13 03:23:30 on branch trunk — Add OFSocketObserver. (user: js, size: 722) [annotate] [blame] [check-ins using]
| ︙ | |||
17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | + |
#endif
/**
* \brief A class which provides functions to create and use sockets.
*/
@interface OFSocket: OFStream
{
@public
#ifndef _WIN32
int sock;
#else
SOCKET sock;
#endif
BOOL eos;
}
|
| ︙ |