diff options
author | chriszero <zerov83@gmail.com> | 2014-11-17 21:38:09 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2014-11-17 21:38:09 +0100 |
commit | fc243d8bfde7c24168b67f90341e7d0d114114b2 (patch) | |
tree | c8756fd61712d63801f2085959ac1b9468533af6 /ControlServer.h | |
parent | 23f9f7712bfa33b5a488a447a6fabe6035cc3240 (diff) | |
download | vdr-plugin-plex-fc243d8bfde7c24168b67f90341e7d0d114114b2.tar.gz vdr-plugin-plex-fc243d8bfde7c24168b67f90341e7d0d114114b2.tar.bz2 |
Removed c++11 dependency
Diffstat (limited to 'ControlServer.h')
-rw-r--r-- | ControlServer.h | 6 |
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; }; |