@@ -86,15 +86,15 @@ * * @brief A class for creating a simple HTTP server inside of applications. */ @interface OFHTTPServer: OFObject { - OFString *_host; + OFString *_Nullable _host; uint16_t _port; - id _delegate; - OFString *_name; - OFTCPSocket *_listeningSocket; + id _Nullable _delegate; + OFString *_Nullable _name; + OFTCPSocket *_Nullable _listeningSocket; } /*! * The host on which the HTTP server will listen. */