mistserver/src/output/output_http_minimalserver.h
2021-10-19 22:29:40 +02:00

16 lines
355 B
C++

#include "output_http.h"
namespace Mist{
class OutHTTPMinimalServer : public HTTPOutput{
public:
OutHTTPMinimalServer(Socket::Connection &conn);
~OutHTTPMinimalServer();
static void init(Util::Config *cfg);
void onHTTP();
private:
std::string resolved_path;
};
}// namespace Mist
typedef Mist::OutHTTPMinimalServer mistOut;