@@ -20,11 +20,11 @@ # error No sockets available! #endif @class OFHTTPServer; @class OFHTTPRequest; -@class OFHTTPRequestReply; +@class OFHTTPResponse; @class OFTCPSocket; @class OFException; /*! * @brief A delegate for OFHTTPServer. @@ -34,15 +34,15 @@ * @brief This method is called when the HTTP server received a request from a * client. * * @param server The HTTP server which received the request * @param request The request the HTTP server received - * @param reply The reply the server wants to send to the client + * @param response The response the server will send to the client */ - (void)server: (OFHTTPServer*)server didReceiveRequest: (OFHTTPRequest*)request - reply: (OFHTTPRequestReply*)reply; + response: (OFHTTPResponse*)response; #ifdef OF_HAVE_OPTIONAL_PROTOCOLS @optional #endif /*!