22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef OF_HAVE_SOCKETS
# error No sockets available!
#endif
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFAcceptSocketFailedException \
* OFAcceptSocketFailedException.h ObjFW/OFAcceptSocketFailedException.h
*
* @brief An exception indicating that accepting a connection failed.
*/
@interface OFAcceptSocketFailedException: OFException
{
id _socket;
int _errNo;
|
|
|
|
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef OF_HAVE_SOCKETS
# error No sockets available!
#endif
OF_ASSUME_NONNULL_BEGIN
/**
* @class OFAcceptSocketFailedException OFAcceptSocketFailedException.h
* ObjFW/ObjFW.h
*
* @brief An exception indicating that accepting a connection failed.
*/
@interface OFAcceptSocketFailedException: OFException
{
id _socket;
int _errNo;
|