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 /plexgdm.cpp | |
parent | 23f9f7712bfa33b5a488a447a6fabe6035cc3240 (diff) | |
download | vdr-plugin-plex-fc243d8bfde7c24168b67f90341e7d0d114114b2.tar.gz vdr-plugin-plex-fc243d8bfde7c24168b67f90341e7d0d114114b2.tar.bz2 |
Removed c++11 dependency
Diffstat (limited to 'plexgdm.cpp')
-rw-r--r-- | plexgdm.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plexgdm.cpp b/plexgdm.cpp index bca152c..12e1e8a 100644 --- a/plexgdm.cpp +++ b/plexgdm.cpp @@ -5,6 +5,11 @@ namespace plexclient plexgdm::plexgdm() { + _discoverMessage = "M-SEARCH * HTTP/1.0"; + _clientHeader = "* HTTP/1.0"; + _multicastAddress = "239.0.0.250"; + _clientUpdatePort = 32412; + m_discoverAdress = Poco::Net::SocketAddress(_multicastAddress, 32414); m_clientRegisterGroup = Poco::Net::SocketAddress(_multicastAddress, 32413); |