diff --git a/HTTPGETHandler.cpp b/GETHandler.cpp similarity index 92% rename from HTTPGETHandler.cpp rename to GETHandler.cpp index 7381727..a189fbd 100644 --- a/HTTPGETHandler.cpp +++ b/GETHandler.cpp @@ -1,4 +1,4 @@ -#include "HTTPGETHandler.h" +#include "GETHandler.h" #include "HTTPParameters.h" #include "HTTPSession.h" #include "HTTPServer.h" @@ -10,7 +10,7 @@ namespace http { - int HTTPGETHandler::processCommand(coreutils::ZString &request, core::TCPSession &session) { + int GETHandler::processCommand(coreutils::ZString &request, core::TCPSession &session) { HTTPRequest httpRequest(request); diff --git a/HTTPGETHandler.h b/GETHandler.h similarity index 79% rename from HTTPGETHandler.h rename to GETHandler.h index c977617..f3d86bb 100644 --- a/HTTPGETHandler.h +++ b/GETHandler.h @@ -1,5 +1,5 @@ -#ifndef __HTTPGETHandler_h__ -#define __HTTPGETHandler_h__ +#ifndef __GETHandler_h__ +#define __GETHandler_h__ #include "Command.h" #include "TCPSession.h" @@ -10,7 +10,7 @@ namespace http { - class HTTPGETHandler : public core::Command { + class GETHandler : public core::Command { public: int processCommand(coreutils::ZString &request, core::TCPSession &session) override; diff --git a/HTTPServer b/HTTPServer deleted file mode 100755 index 425d242..0000000 Binary files a/HTTPServer and /dev/null differ