vdr-plugin-iptv/protocolfile.h

37 lines
769 B
C
Raw Normal View History

2007-09-16 14:18:15 +02:00
/*
* protocolfile.h: IPTV plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __IPTV_PROTOCOLFILE_H
#define __IPTV_PROTOCOLFILE_H
#include <arpa/inet.h>
#include "protocolif.h"
class cIptvProtocolFile : public cIptvProtocolIf {
private:
2013-02-23 14:31:11 +01:00
char* fileLocationM;
int fileDelayM;
FILE* fileStreamM;
bool isActiveM;
2007-09-16 14:18:15 +02:00
private:
bool OpenFile(void);
void CloseFile(void);
public:
cIptvProtocolFile();
virtual ~cIptvProtocolFile();
2013-02-23 14:31:11 +01:00
int Read(unsigned char* bufferAddrP, unsigned int bufferLenP);
bool Set(const char* locationP, const int parameterP, const int indexP);
2008-01-05 00:36:37 +01:00
bool Open(void);
bool Close(void);
cString GetInformation(void);
2007-09-16 14:18:15 +02:00
};
#endif // __IPTV_PROTOCOLFILE_H