diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/Makefile | 2 | ||||
-rw-r--r-- | server/connection.c | 2 | ||||
-rw-r--r-- | server/connection.h | 2 | ||||
-rw-r--r-- | server/connectionHTTP.c | 4 | ||||
-rw-r--r-- | server/connectionHTTP.h | 2 | ||||
-rw-r--r-- | server/connectionIGMP.c | 2 | ||||
-rw-r--r-- | server/connectionVTP.c | 2 | ||||
-rw-r--r-- | server/setup.c | 2 | ||||
-rw-r--r-- | server/setup.h | 2 | ||||
-rw-r--r-- | server/streamdev-server.c | 2 | ||||
-rw-r--r-- | server/streamdev-server.h | 2 | ||||
-rw-r--r-- | server/streamer.c | 2 | ||||
-rw-r--r-- | server/streamer.h | 2 |
13 files changed, 14 insertions, 14 deletions
diff --git a/server/Makefile b/server/Makefile index 7d46645..8f512ac 100644 --- a/server/Makefile +++ b/server/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.1.2.2 2010/06/20 19:12:56 schmirl Exp $ +# $Id: Makefile,v 1.2 2010/07/19 13:49:31 schmirl Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. diff --git a/server/connection.c b/server/connection.c index 6121b7a..956c42a 100644 --- a/server/connection.c +++ b/server/connection.c @@ -1,5 +1,5 @@ /* - * $Id: connection.c,v 1.13.2.1 2010/06/11 06:06:02 schmirl Exp $ + * $Id: connection.c,v 1.14 2010/07/19 13:49:31 schmirl Exp $ */ #include "server/connection.h" diff --git a/server/connection.h b/server/connection.h index dfaff91..ff5ee98 100644 --- a/server/connection.h +++ b/server/connection.h @@ -1,5 +1,5 @@ /* - * $Id: connection.h,v 1.8.2.1 2010/06/11 06:06:02 schmirl Exp $ + * $Id: connection.h,v 1.9 2010/07/19 13:49:31 schmirl Exp $ */ #ifndef VDR_STREAMDEV_SERVER_CONNECTION_H diff --git a/server/connectionHTTP.c b/server/connectionHTTP.c index b963d64..028b9ea 100644 --- a/server/connectionHTTP.c +++ b/server/connectionHTTP.c @@ -1,5 +1,5 @@ /* - * $Id: connectionHTTP.c,v 1.17.2.1 2010/06/11 06:06:02 schmirl Exp $ + * $Id: connectionHTTP.c,v 1.19 2010/07/20 12:26:29 schmirl Exp $ */ #include <ctype.h> @@ -336,7 +336,7 @@ bool cConnectionHTTP::ProcessURI(const std::string& PathInfo) Dprintf("before channelfromstring: type(%s) filespec(%s) fileext(%s)\n", type.c_str(), filespec.c_str(), fileext.c_str()); - if ((m_ChannelList = ChannelListFromString(PathInfo.substr(0, file_pos), filespec.c_str(), fileext.c_str())) != NULL) { + if ((m_ChannelList = ChannelListFromString(PathInfo.substr(1, file_pos), filespec.c_str(), fileext.c_str())) != NULL) { Dprintf("Channel list requested\n"); return true; } else if ((m_Channel = ChannelFromString(filespec.c_str(), &m_Apid[0], &m_Dpid[0])) != NULL) { diff --git a/server/connectionHTTP.h b/server/connectionHTTP.h index 1ea6ed2..56f89b0 100644 --- a/server/connectionHTTP.h +++ b/server/connectionHTTP.h @@ -1,5 +1,5 @@ /* - * $Id: connectionHTTP.h,v 1.6.2.1 2010/06/11 06:06:02 schmirl Exp $ + * $Id: connectionHTTP.h,v 1.7 2010/07/19 13:49:31 schmirl Exp $ */ #ifndef VDR_STREAMDEV_SERVERS_CONNECTIONHTTP_H diff --git a/server/connectionIGMP.c b/server/connectionIGMP.c index 7ea7e11..50db15b 100644 --- a/server/connectionIGMP.c +++ b/server/connectionIGMP.c @@ -1,5 +1,5 @@ /* - * $Id: connectionIGMP.c,v 1.1.4.1 2010/06/11 06:06:02 schmirl Exp $ + * $Id: connectionIGMP.c,v 1.2 2010/07/19 13:49:31 schmirl Exp $ */ #include <ctype.h> diff --git a/server/connectionVTP.c b/server/connectionVTP.c index ca73cfb..861bc83 100644 --- a/server/connectionVTP.c +++ b/server/connectionVTP.c @@ -1,5 +1,5 @@ /* - * $Id: connectionVTP.c,v 1.27.2.1 2010/06/11 06:06:03 schmirl Exp $ + * $Id: connectionVTP.c,v 1.28 2010/07/19 13:49:31 schmirl Exp $ */ #include "server/connectionVTP.h" diff --git a/server/setup.c b/server/setup.c index 986f876..8c9b8ad 100644 --- a/server/setup.c +++ b/server/setup.c @@ -1,5 +1,5 @@ /* - * $Id: setup.c,v 1.9.2.2 2010/06/18 19:07:32 schmirl Exp $ + * $Id: setup.c,v 1.10 2010/07/19 13:49:31 schmirl Exp $ */ #include <vdr/menuitems.h> diff --git a/server/setup.h b/server/setup.h index f71162f..9f06aac 100644 --- a/server/setup.h +++ b/server/setup.h @@ -1,5 +1,5 @@ /* - * $Id: setup.h,v 1.3.2.1 2010/06/18 19:07:32 schmirl Exp $ + * $Id: setup.h,v 1.4 2010/07/19 13:49:31 schmirl Exp $ */ #ifndef VDR_STREAMDEV_SETUPSERVER_H diff --git a/server/streamdev-server.c b/server/streamdev-server.c index 8e9f979..b444df7 100644 --- a/server/streamdev-server.c +++ b/server/streamdev-server.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: streamdev-server.c,v 1.1.2.1 2010/06/14 10:40:20 schmirl Exp $ + * $Id: streamdev-server.c,v 1.2 2010/07/19 13:49:32 schmirl Exp $ */ #include <getopt.h> diff --git a/server/streamdev-server.h b/server/streamdev-server.h index 1224ecf..4083689 100644 --- a/server/streamdev-server.h +++ b/server/streamdev-server.h @@ -1,5 +1,5 @@ /* - * $Id: streamdev-server.h,v 1.1.2.1 2010/06/14 10:40:20 schmirl Exp $ + * $Id: streamdev-server.h,v 1.2 2010/07/19 13:49:32 schmirl Exp $ */ #ifndef VDR_STREAMDEVSERVER_H diff --git a/server/streamer.c b/server/streamer.c index b545b21..c92e7ee 100644 --- a/server/streamer.c +++ b/server/streamer.c @@ -1,5 +1,5 @@ /* - * $Id: streamer.c,v 1.19.2.1 2010/06/11 06:06:03 schmirl Exp $ + * $Id: streamer.c,v 1.20 2010/07/19 13:49:32 schmirl Exp $ */ #include <vdr/ringbuffer.h> diff --git a/server/streamer.h b/server/streamer.h index d3ddd23..988775a 100644 --- a/server/streamer.h +++ b/server/streamer.h @@ -1,5 +1,5 @@ /* - * $Id: streamer.h,v 1.11.2.1 2010/06/11 06:06:03 schmirl Exp $ + * $Id: streamer.h,v 1.12 2010/07/19 13:49:32 schmirl Exp $ */ #ifndef VDR_STREAMDEV_STREAMER_H |