summaryrefslogtreecommitdiff
path: root/ControlServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'ControlServer.h')
-rw-r--r--ControlServer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ControlServer.h b/ControlServer.h
index 55f8299..f349533 100644
--- a/ControlServer.h
+++ b/ControlServer.h
@@ -25,10 +25,10 @@ public:
void Stop();
private:
- ControlServer() {};
+ ControlServer();
- Poco::Net::ServerSocket *m_pSvs = new Poco::Net::ServerSocket(3200);;
- Poco::Net::HTTPServer *m_pSrv = new Poco::Net::HTTPServer(new PlexReqHandlerFactory, *m_pSvs, new Poco::Net::HTTPServerParams);
+ Poco::Net::ServerSocket *m_pSvs;
+ Poco::Net::HTTPServer *m_pSrv;
};