Index: src/exceptions/OFBindFailedException.h ================================================================== --- src/exceptions/OFBindFailedException.h +++ src/exceptions/OFBindFailedException.h @@ -30,11 +30,11 @@ * @brief An exception indicating that binding a socket failed. */ @interface OFBindFailedException: OFException { /* IP */ - OFString *_host; + OFString *_Nullable _host; uint16_t _port; /* IPX */ uint8_t _packetType; /* UNIX socket */ OFString *_Nullable _path; @@ -43,11 +43,11 @@ } /** * @brief The host on which binding failed. */ -@property (readonly, nonatomic) OFString *host; +@property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFString *host; /** * @brief The port on which binding failed. */ @property (readonly, nonatomic) uint16_t port;