mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
increased client side timeout for TUNE command
This commit is contained in:
parent
fe9a58b88c
commit
17c22dc7ee
1
HISTORY
1
HISTORY
@ -1,6 +1,7 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- increased client side timeout for TUNE command
|
||||||
- fixed regression: no receiver created for ES/PS/PES (reported by Gavin
|
- fixed regression: no receiver created for ES/PS/PES (reported by Gavin
|
||||||
Hamill)
|
Hamill)
|
||||||
- VTP no longer uses a static priority value for its server-side receivers.
|
- VTP no longer uses a static priority value for its server-side receivers.
|
||||||
|
@ -250,7 +250,7 @@ bool cClientSocket::SetChannelDevice(const cChannel *Channel) {
|
|||||||
|
|
||||||
std::string command = (std::string)"TUNE "
|
std::string command = (std::string)"TUNE "
|
||||||
+ (const char*)Channel->GetChannelID().ToString();
|
+ (const char*)Channel->GetChannelID().ToString();
|
||||||
if (!Command(command, 220)) {
|
if (!Command(command, 220, 10000)) {
|
||||||
if (errno == 0)
|
if (errno == 0)
|
||||||
esyslog("ERROR: Streamdev: Couldn't tune %s:%d to channel %s",
|
esyslog("ERROR: Streamdev: Couldn't tune %s:%d to channel %s",
|
||||||
RemoteIp().c_str(), RemotePort(), Channel->Name());
|
RemoteIp().c_str(), RemotePort(), Channel->Name());
|
||||||
|
Loading…
Reference in New Issue
Block a user