blob: 8546fa720a6025d4a7ee82a44e2300d405f0aab5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#ifndef CONTROLSERVER_H
#define CONTROLSERVER_H
#include <Poco/Net/HTTPServer.h>
#include <Poco/Net/HTTPRequestHandler.h>
#include <Poco/Net/HTTPRequestHandlerFactory.h>
#include <Poco/Net/HTTPServerParams.h>
#include <Poco/Net/ServerSocket.h>
#include "PlexHTTPRequestHandler.h"
#include "PlexReqHandlerFactory.h"
#include <vdr/thread.h>
namespace plexclient
{
class ControlServer : public cThread
{
public:
static ControlServer& GetInstance() {
static ControlServer instance;
return instance;
}
void Stop();
protected:
void Action();
private:
ControlServer();
Poco::Net::ServerSocket *m_pSvs;
Poco::Net::HTTPServer *m_pSrv;
};
}
#endif // CONTROLSERVER_H
|