25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/**
* \brief A class which provides functions to create and use stream sockets.
*/
@interface OFStreamSocket: OFStream
{
int sock;
BOOL eos;
}
/**
* \return A new autoreleased OFTCPSocket
*/
+ socket;
@end
|
|
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/**
* \brief A class which provides functions to create and use stream sockets.
*/
@interface OFStreamSocket: OFStream
{
int sock;
BOOL isAtEndOfStream;
}
/**
* \return A new autoreleased OFTCPSocket
*/
+ socket;
@end
|