mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
use SO_KEEPALIVE option on all sockets do detect dead sockets
This commit is contained in:
parent
1474cdf799
commit
0e9e22c23d
@ -112,6 +112,7 @@ Jori Hamalainen
|
|||||||
|
|
||||||
owagner
|
owagner
|
||||||
for pointing out a problem with the encrypted channel switching fix
|
for pointing out a problem with the encrypted channel switching fix
|
||||||
|
for suggesting use of SO_KEEPALIVE socket option to detect dead sockets
|
||||||
|
|
||||||
Joachim König-Baltes
|
Joachim König-Baltes
|
||||||
for fixing Min/MaxPriority parsing
|
for fixing Min/MaxPriority parsing
|
||||||
|
2
HISTORY
2
HISTORY
@ -1,6 +1,8 @@
|
|||||||
VDR Plugin 'streamdev' Revision History
|
VDR Plugin 'streamdev' Revision History
|
||||||
---------------------------------------
|
---------------------------------------
|
||||||
|
|
||||||
|
- use SO_KEEPALIVE option on all sockets do detect dead sockets (thanks to
|
||||||
|
owagner)
|
||||||
- enable PatFilter for externremux, so VLC can be used as remuxer or client
|
- enable PatFilter for externremux, so VLC can be used as remuxer or client
|
||||||
- fixed insecure format strings in LSTX handlers (thanks to Anssi Hannula)
|
- fixed insecure format strings in LSTX handlers (thanks to Anssi Hannula)
|
||||||
- updated Finish translation (thanks to Rolf Ahrenberg)
|
- updated Finish translation (thanks to Rolf Ahrenberg)
|
||||||
|
@ -124,6 +124,10 @@ bool cTBSocket::Accept(const cTBSocket &Listener) {
|
|||||||
if (::getsockname(socket, (struct sockaddr*)&m_LocalAddr, &addrlen) == -1)
|
if (::getsockname(socket, (struct sockaddr*)&m_LocalAddr, &addrlen) == -1)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
int sol=1;
|
||||||
|
// Ignore possible errors here, proceed as usual
|
||||||
|
::setsockopt(socket, SOL_SOCKET, SO_KEEPALIVE, &sol, sizeof(sol));
|
||||||
|
|
||||||
if (!cTBSource::Open(socket))
|
if (!cTBSource::Open(socket))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user