fhq-server  v0.2.33
Documentation for fhq-server. FreeHackQuest is an open source platform for competitions of computer security.
wsjcpp_light_web_http_handler_web_folder.h
Go to the documentation of this file.
1 #ifndef WSJCPP_LIGHT_WEB_HTTP_HANDLER_WEB_FOLDER_H
2 #define WSJCPP_LIGHT_WEB_HTTP_HANDLER_WEB_FOLDER_H
3 
5 
7  public:
8  WsjcppLightWebHttpHandlerWebFolder(const std::string &sPrefixPath, const std::string &sWebFolder);
9  virtual bool canHandle(const std::string &sWorkerId, WsjcppLightWebHttpRequest *pRequest);
10  virtual bool handle(const std::string &sWorkerId, WsjcppLightWebHttpRequest *pRequest);
11 
12  private:
13  std::string TAG;
14  std::string m_sPrefixPath;
15  std::string m_sWebFolder;
16 };
17 
18 #endif // WSJCPP_LIGHT_WEB_HTTP_HANDLER_WEB_FOLDER_H
Definition: wsjcpp_light_web_http_handler_web_folder.h:6
WsjcppLightWebHttpHandlerWebFolder(const std::string &sPrefixPath, const std::string &sWebFolder)
Definition: wsjcpp_light_web_http_handler_web_folder.cpp:6
std::string m_sWebFolder
Definition: wsjcpp_light_web_http_handler_web_folder.h:15
virtual bool handle(const std::string &sWorkerId, WsjcppLightWebHttpRequest *pRequest)
Definition: wsjcpp_light_web_http_handler_web_folder.cpp:38
Definition: wsjcpp_light_web_http_request.h:22
Definition: wsjcpp_light_web_server.h:14
std::string TAG
Definition: wsjcpp_light_web_http_handler_web_folder.h:13
virtual bool canHandle(const std::string &sWorkerId, WsjcppLightWebHttpRequest *pRequest)
Definition: wsjcpp_light_web_http_handler_web_folder.cpp:16
std::string m_sPrefixPath
Definition: wsjcpp_light_web_http_handler_web_folder.h:14