1
0
mirror of https://github.com/rofafor/vdr-plugin-iptv.git synced 2023-10-10 13:37:03 +02:00
vdr-plugin-iptv/protocolfile.h
Rolf Ahrenberg 53b5644973 Migration changes for git and UTF-8.
Updated contact information.
2008-08-23 08:15:30 +03:00

39 lines
796 B
C++

/*
* 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:
char* fileLocation;
int fileDelay;
FILE* fileStream;
unsigned char* readBuffer;
unsigned int readBufferLen;
bool isActive;
private:
bool OpenFile(void);
void CloseFile(void);
public:
cIptvProtocolFile();
virtual ~cIptvProtocolFile();
int Read(unsigned char* *BufferAddr);
bool Set(const char* Location, const int Parameter, const int Index);
bool Open(void);
bool Close(void);
cString GetInformation(void);
};
#endif // __IPTV_PROTOCOLFILE_H