vdr-plugin-iptv/protocolhttp.h

40 lines
956 B
C
Raw Normal View History

2007-09-16 11:38:00 +02:00
/*
* protocolhttp.h: IPTV plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __IPTV_PROTOCOLHTTP_H
#define __IPTV_PROTOCOLHTTP_H
#include <arpa/inet.h>
#include "protocolif.h"
#include "socket.h"
2007-09-16 11:38:00 +02:00
class cIptvProtocolHttp : public cIptvTcpSocket, public cIptvProtocolIf {
2007-09-16 11:38:00 +02:00
private:
2013-02-23 14:31:11 +01:00
char* streamAddrM;
char* streamPathM;
int streamPortM;
2007-09-16 11:38:00 +02:00
private:
bool Connect(void);
bool Disconnect(void);
2013-02-23 14:31:11 +01:00
bool GetHeaderLine(char* destP, unsigned int destLenP, unsigned int &recvLenP);
2007-09-29 12:55:14 +02:00
bool ProcessHeaders(void);
2007-09-16 11:38:00 +02:00
public:
cIptvProtocolHttp();
virtual ~cIptvProtocolHttp();
2013-02-23 14:31:11 +01:00
int Read(unsigned char* bufferAddrP, unsigned int bufferLenP);
2014-02-09 18:22:02 +01:00
bool SetSource(const char* locationP, const int parameterP, const int indexP);
bool SetPid(int pidP, int typeP, bool onP);
2008-01-05 00:36:37 +01:00
bool Open(void);
bool Close(void);
cString GetInformation(void);
2007-09-16 11:38:00 +02:00
};
#endif // __IPTV_PROTOCOLHTTP_H