blob: f3495333ac11292cb2d48820db83af9a3860995d (
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
|
#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"
namespace plexclient
{
class ControlServer
{
public:
static ControlServer& GetInstance() {
static ControlServer instance;
return instance;
}
void Start();
void Stop();
private:
ControlServer();
Poco::Net::ServerSocket *m_pSvs;
Poco::Net::HTTPServer *m_pSrv;
};
}
#endif // CONTROLSERVER_H
|