Clarify the direction requests go

This commit is contained in:
JoelKatz
2012-12-28 16:52:12 -08:00
parent a169167030
commit a83e00610a
2 changed files with 4 additions and 2 deletions

View File

@@ -7,6 +7,8 @@
#include "Log.h"
SETUP_LOG();
// Logic to handle incoming HTTP reqests
void HTTPRequest::reset()
{
vHeaders.clear();

View File

@@ -16,7 +16,7 @@ enum HTTPRequestAction
};
class HTTPRequest
{ // an HTTP request in progress
{ // an HTTP request we are handling from a client
protected:
enum state
@@ -58,4 +58,4 @@ public:
int getDataSize() { return iDataSize; }
};
#endif
#endif