summaryrefslogtreecommitdiff
path: root/server/connectionHTTP.h
diff options
context:
space:
mode:
authorFrank Schmirler <vdr@schmirler.de>2010-12-02 09:02:31 +0100
committerFrank Schmirler <vdr@schmirler.de>2010-12-02 09:04:50 +0100
commit31df0eaf8e49bc1cfea755bd88f3dd795c8f1ace (patch)
treeedc73b2c6e6af1c2b5d19521fae3a5347dad659d /server/connectionHTTP.h
parent7576173547027dae57206cfd3d967d5c516fa6b7 (diff)
downloadvdr-plugin-streamdev-31df0eaf8e49bc1cfea755bd88f3dd795c8f1ace.tar.gz
vdr-plugin-streamdev-31df0eaf8e49bc1cfea755bd88f3dd795c8f1ace.tar.bz2
Streamdev 0.3.4
Diffstat (limited to 'server/connectionHTTP.h')
-rw-r--r--server/connectionHTTP.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/server/connectionHTTP.h b/server/connectionHTTP.h
index 11e97b7..a3558ad 100644
--- a/server/connectionHTTP.h
+++ b/server/connectionHTTP.h
@@ -1,5 +1,5 @@
/*
- * $Id: connectionHTTP.h,v 1.4 2007/04/02 10:32:34 schmirl Exp $
+ * $Id: connectionHTTP.h,v 1.5 2008/03/28 15:11:40 schmirl Exp $
*/
#ifndef VDR_STREAMDEV_SERVERS_CONNECTIONHTTP_H
@@ -12,6 +12,7 @@
class cChannel;
class cStreamdevLiveStreamer;
+class cChannelList;
class cConnectionHTTP: public cServerConnection {
private:
@@ -28,16 +29,18 @@ private:
};
std::string m_Request;
+ std::string m_Host;
//std::map<std::string,std::string> m_Headers; TODO: later?
eHTTPStatus m_Status;
eHTTPJob m_Job;
// job: transfer
cStreamdevLiveStreamer *m_LiveStreamer;
+ std::string m_StreamerParameter;
const cChannel *m_Channel;
int m_Apid;
eStreamType m_StreamType;
// job: listing
- const cChannel *m_ListChannel;
+ cChannelList *m_ChannelList;
protected:
bool ProcessRequest(void);