diff options
author | chriszero <zerov83@gmail.com> | 2015-02-13 16:14:10 +0100 |
---|---|---|
committer | chriszero <zerov83@gmail.com> | 2015-02-13 16:14:10 +0100 |
commit | 20fefdd3f341d6e7f6b15e4926bf5569aa1943d5 (patch) | |
tree | ba402770b4912be3d93f6dd8faab521f4b5e4762 /plexgdm.cpp | |
parent | b5c156939ddf2fc4ec3fa27ae1c3daae28681c12 (diff) | |
download | vdr-plugin-plex-20fefdd3f341d6e7f6b15e4926bf5569aa1943d5.tar.gz vdr-plugin-plex-20fefdd3f341d6e7f6b15e4926bf5569aa1943d5.tar.bz2 |
Removed some raw pointers to avoid a possible memoryleak
Diffstat (limited to 'plexgdm.cpp')
-rw-r--r-- | plexgdm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plexgdm.cpp b/plexgdm.cpp index 0ad2fe0..9eb152f 100644 --- a/plexgdm.cpp +++ b/plexgdm.cpp @@ -12,7 +12,7 @@ plexgdm::plexgdm() _multicastAddress = "239.0.0.250"; _clientUpdatePort = 32412; _helloSent = false; - _discoverInterval = 10 * 1000; + _discoverInterval = 30 * 1000; _discoverTimer.Set(1); m_discoverAdress = Poco::Net::SocketAddress(_multicastAddress, 32414); |