sync repo.

This commit is contained in:
Brad Arant 2025-06-20 02:01:27 +00:00
parent 770443c265
commit 90b5d835d0
3 changed files with 5 additions and 5 deletions

View File

@ -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);

View File

@ -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;

Binary file not shown.