ObjFW  Diff

Differences From Artifact [b45d336249]:

To Artifact [4e5961b3cb]:


31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@interface OFAcceptFailedException: OFException
{
	id _socket;
	int _errNo;
}

/*!
 * The socket which could not accept a connection.
 */
@property (readonly, nonatomic) id socket;

/*!
 * @return The errno from when the exception was created.
 */
@property (readonly, nonatomic) int errNo;

+ (instancetype)exception OF_UNAVAILABLE;

/*!
 * @brief Creates a new, autoreleased accept failed exception.







|




|







31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@interface OFAcceptFailedException: OFException
{
	id _socket;
	int _errNo;
}

/*!
 * @brief The socket which could not accept a connection.
 */
@property (readonly, nonatomic) id socket;

/*!
 * @brief The errno from when the exception was created.
 */
@property (readonly, nonatomic) int errNo;

+ (instancetype)exception OF_UNAVAILABLE;

/*!
 * @brief Creates a new, autoreleased accept failed exception.