ObjFW  Check-in [ecb6bb56ba]

Overview
Comment:OFBindFailedException: Add missing nullable
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: ecb6bb56bab6bd7e24b1b4e79a7edda54a093d6a74a42a34af9071b061cf1d60
User & Date: js on 2022-04-20 12:57:39
Other Links: manifest | tags
Context
2022-04-20
13:01
OFConditionBroadcastFailedException: Make nonnull check-in: 108b9b6a51 user: js tags: trunk
12:57
OFBindFailedException: Add missing nullable check-in: ecb6bb56ba user: js tags: trunk
2022-04-19
16:48
Don't install OFHuffmanTree.h check-in: 112ab00310 user: js tags: trunk
Changes

Modified src/exceptions/OFBindFailedException.h from [cce9c4501d] to [b9744b8563].

28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 *	  OFBindFailedException.h ObjFW/OFBindFailedException.h
 *
 * @brief An exception indicating that binding a socket failed.
 */
@interface OFBindFailedException: OFException
{
	/* IP */
	OFString *_host;
	uint16_t _port;
	/* IPX */
	uint8_t _packetType;
	/* UNIX socket */
	OFString *_Nullable _path;
	id _socket;
	int _errNo;
}

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

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

/**







|












|







28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
 *	  OFBindFailedException.h ObjFW/OFBindFailedException.h
 *
 * @brief An exception indicating that binding a socket failed.
 */
@interface OFBindFailedException: OFException
{
	/* IP */
	OFString *_Nullable _host;
	uint16_t _port;
	/* IPX */
	uint8_t _packetType;
	/* UNIX socket */
	OFString *_Nullable _path;
	id _socket;
	int _errNo;
}

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

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

/**