16 lines
355 B
C++
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;
|