mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
Removed noisy debug messages
This commit is contained in:
parent
5e5070edc0
commit
69b654d539
1
HISTORY
1
HISTORY
@ -1,6 +1,7 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- Removed noisy debug messages
|
||||||
- Fixed HTTP menu destruction
|
- Fixed HTTP menu destruction
|
||||||
- API change of VDR 2.1.2
|
- API change of VDR 2.1.2
|
||||||
- Fixed priority handling, messed up when adding multi-device support
|
- Fixed priority handling, messed up when adding multi-device support
|
||||||
|
@ -115,18 +115,15 @@ bool cClientSocket::CheckConnection(void) {
|
|||||||
if (IsOpen()) {
|
if (IsOpen()) {
|
||||||
cTBSelect select;
|
cTBSelect select;
|
||||||
|
|
||||||
Dprintf("connection open\n");
|
|
||||||
|
|
||||||
// XXX+ check if connection is still alive (is there a better way?)
|
// XXX+ check if connection is still alive (is there a better way?)
|
||||||
// There REALLY shouldn't be anything readable according to PROTOCOL here
|
// There REALLY shouldn't be anything readable according to PROTOCOL here
|
||||||
// If there is, assume it's an eof signal (subseq. read would return 0)
|
// If there is, assume it's an eof signal (subseq. read would return 0)
|
||||||
select.Add(*this, false);
|
select.Add(*this, false);
|
||||||
int res;
|
int res;
|
||||||
if ((res = select.Select(0)) == 0) {
|
if ((res = select.Select(0)) == 0) {
|
||||||
Dprintf("select said nothing happened\n");
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
Dprintf("closing connection (res was %d)", res);
|
Dprintf("closing connection (res was %d)\n", res);
|
||||||
Close();
|
Close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user