ObjFW  Diff

Differences From Artifact [fa0052c967]:

To Artifact [6843e4c621]:


21
22
23
24
25
26
27
28
29

30
31
32
33

34
35
36
37
38
39
40
41
42
21
22
23
24
25
26
27


28




29
30
31
32
33
34
35
36
37
38







-
-
+
-
-
-
-
+









/*!
 * @class OFStreamSocket OFStreamSocket.h ObjFW/OFStreamSocket.h
 *
 * @brief A class which provides functions to create and use stream sockets.
 */
@interface OFStreamSocket: OFStream
{
#ifndef _WIN32
	int    _socket;
	of_socket_t _socket;
#else
	SOCKET _socket;
#endif
	bool  _atEndOfStream;
	bool _atEndOfStream;
}

/*!
 * @brief Returns a new, autoreleased OFTCPSocket.
 *
 * @return A new, autoreleased OFTCPSocket
 */
+ (instancetype)socket;
@end