-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathControlServer.h
More file actions
40 lines (27 loc) · 770 Bytes
/
ControlServer.h
File metadata and controls
40 lines (27 loc) · 770 Bytes
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
#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