ObjFW  Diff

Differences From Artifact [e3c3bc0a45]:

To Artifact [8704ec525d]:


33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
	uint16_t _port;
	int _errNo;
}

/*!
 * The host on which binding failed.
 */
@property (readonly, copy) OFString *host;

/*!
 * The port on which binding failed.
 */
@property (readonly) uint16_t port;

/*!
 * The socket which could not be bound.
 */
@property (readonly, retain) id socket;

/*!
 * The errno of the error that occurred.
 */
@property (readonly) int errNo;

/*!







|









|







33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
	uint16_t _port;
	int _errNo;
}

/*!
 * The host on which binding failed.
 */
@property (readonly, nonatomic) OFString *host;

/*!
 * The port on which binding failed.
 */
@property (readonly) uint16_t port;

/*!
 * The socket which could not be bound.
 */
@property (readonly, nonatomic) id socket;

/*!
 * The errno of the error that occurred.
 */
@property (readonly) int errNo;

/*!