@@ -59,15 +59,15 @@ /*! * @brief A class for creating a simple HTTP server inside of applications. */ @interface OFHTTPServer: OFObject { - OFString *host; - uint16_t port; - id delegate; - OFString *name; - OFTCPSocket *listeningSocket; + OFString *_host; + uint16_t _port; + id _delegate; + OFString *_name; + OFTCPSocket *_listeningSocket; } #ifdef OF_HAVE_PROPERTIES @property (copy) OFString *host; @property uint16_t port;