HTTPServer/HTTPEntryPoints.h
2024-07-16 16:50:20 -07:00

27 lines
414 B
C++

#ifndef __HTTPEntryPoints_h__
#define __HTTPEntryPoints_h__
#include "Command.h"
#include "TCPSession.h"
#include "Log.h"
#include "IMFMessage.h"
#include "HTTPRequest.h"
namespace http {
class HTTPEntryPoints {
public:
HTTPEntryPoints();
coreutils::ZString getFlow(coreutils::ZString &uri);
private:
coreutils::ZString index;
coreutils::ZString notfound;
};
}
#endif