mistserver/src/output/output_http_internal.h

17 lines
348 B
C++

#include "output_http.h"
namespace Mist {
class OutHTTP : public HTTPOutput {
public:
OutHTTP(Socket::Connection & conn);
~OutHTTP();
static void init(Util::Config * cfg);
static bool listenMode();
virtual void onFail();
void onHTTP();
bool isReadyForPlay();
};
}
typedef Mist::OutHTTP mistOut;