ObjFW  Diff

Differences From Artifact [cc8482609a]:

To Artifact [c13d8752b7]:


17
18
19
20
21
22
23

24
25
26
27
28
29
30
#endif

/**
 * \brief A class which provides functions to create and use sockets.
 */
@interface OFSocket: OFStream
{

#ifndef _WIN32
	int		sock;
#else
	SOCKET		sock;
#endif
	BOOL		eos;
}







>







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;
}