@@ -16,11 +16,11 @@ #import "OFObject.h" @class OFHTTPServer; @class OFHTTPRequest; -@class OFHTTPRequestResult; +@class OFHTTPRequestReply; @class OFTCPSocket; @class OFException; /*! * @brief A delegate for OFHTTPServer. @@ -30,14 +30,14 @@ * @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 - * @return The result the HTTP server should send to the client + * @return The reply the HTTP server should send to the client */ -- (OFHTTPRequestResult*)server: (OFHTTPServer*)server - didReceiveRequest: (OFHTTPRequest*)request; +- (OFHTTPRequestReply*)server: (OFHTTPServer*)server + didReceiveRequest: (OFHTTPRequest*)request; @end /*! * @brief A class for creating a simple HTTP server inside of applications. */