diff options
author | thomas <thomas> | 2006-07-05 20:39:19 +0000 |
---|---|---|
committer | thomas <thomas> | 2006-07-05 20:39:19 +0000 |
commit | 01752a66d606190ec22f3ce490dc67cd365f8411 (patch) | |
tree | 52f628a447250793ae738b956c8a8950461d1845 /server | |
parent | 434b91fa61f8c15bc61d02d86d17bfb127bc1dd5 (diff) | |
download | vdr-plugin-streamdev-01752a66d606190ec22f3ce490dc67cd365f8411.tar.gz vdr-plugin-streamdev-01752a66d606190ec22f3ce490dc67cd365f8411.tar.bz2 |
Auskommentiertes Attach/Detach wieder aktiviert.
Kartenblockade wird dadurch behoben und alle Channels lassen sich anzappen, Unbedenklichkeit ist aber nicht einwandfrei geklärt!
Diffstat (limited to 'server')
-rw-r--r-- | server/connection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/connection.c b/server/connection.c index fb0cc96..78c1429 100644 --- a/server/connection.c +++ b/server/connection.c @@ -1,5 +1,5 @@ /* - * $Id: connection.c,v 1.5 2005/05/09 20:30:38 lordjaxom Exp $ + * $Id: connection.c,v 1.6 2006/07/05 20:39:19 thomas Exp $ */ #include "server/connection.h" @@ -149,9 +149,9 @@ cDevice *cServerConnection::GetDevice(const cChannel *Channel, int Priority) Dprintf(" * trying again...\n"); const cChannel *current = Channels.GetByNumber(cDevice::CurrentChannel()); //isyslog("streamdev-server: Detaching current receiver"); - //Detach(); XXX+ + Detach(); device = cDevice::GetDevice(Channel, Priority); - //Attach(); XXX+ + Attach(); Dprintf(" * Found following device: %p (%d)\n", device, device ? device->CardIndex() + 1 : 0); if (device == cDevice::ActualDevice()) |