27 lines
414 B
C++
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
|