ObjFW  Diff

Differences From Artifact [943ba253dc]:

To Artifact [70d0ff65e2]:


19
20
21
22
23
24
25
26
27


28
29
30
31
32
33
34
35
36


37
38

39
40
41
19
20
21
22
23
24
25


26
27
28
29
30
31
32
33
34


35
36
37

38
39
40
41







-
-
+
+







-
-
+
+

-
+



#ifdef _WIN32
# ifndef _WIN32_WINNT
#  define _WIN32_WINNT 0x0501
# endif
# include <winsock2.h>
#endif

/**
 * \brief A class which provides functions to create and use stream sockets.
/*!
 * @brief A class which provides functions to create and use stream sockets.
 */
@interface OFStreamSocket: OFStream
{
	int  sock;
	BOOL atEndOfStream;
}

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