vdr-plugin-iptv/protocolhttp.h

40 lines
961 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.
*
* $Id: protocolhttp.h,v 1.10 2007/10/21 13:31:21 ajhseppa Exp $
2007-09-16 11:38:00 +02:00
*/
#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 cIptvSocket, public cIptvProtocolIf {
2007-09-16 11:38:00 +02:00
private:
char* streamAddr;
char* streamPath;
2007-09-16 11:38:00 +02:00
private:
bool Connect(void);
bool Disconnect(void);
2007-09-29 12:55:14 +02:00
bool GetHeaderLine(char* dest, unsigned int destLen,
unsigned int &recvLen);
bool ProcessHeaders(void);
2007-09-16 11:38:00 +02:00
public:
cIptvProtocolHttp();
virtual ~cIptvProtocolHttp();
virtual int Read(unsigned char* *BufferAddr);
virtual bool Set(const char* Location, const int Parameter, const int Index);
2007-09-16 11:38:00 +02:00
virtual bool Open(void);
virtual bool Close(void);
2007-10-08 00:54:09 +02:00
virtual cString GetInformation(void);
2007-09-16 11:38:00 +02:00
};
#endif // __IPTV_PROTOCOLHTTP_H