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.
|
|
|
|
*
|
2007-10-08 00:54:09 +02:00
|
|
|
* $Id: protocolfile.h,v 1.5 2007/10/07 22:54:09 rahrenbe Exp $
|
2007-09-16 14:18:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IPTV_PROTOCOLFILE_H
|
|
|
|
#define __IPTV_PROTOCOLFILE_H
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include "protocolif.h"
|
|
|
|
|
|
|
|
class cIptvProtocolFile : public cIptvProtocolIf {
|
|
|
|
private:
|
|
|
|
char* streamAddr;
|
|
|
|
int streamPort;
|
2007-09-16 16:47:01 +02:00
|
|
|
FILE* fileStream;
|
2007-09-16 14:18:15 +02:00
|
|
|
unsigned char* readBuffer;
|
2007-09-28 18:44:59 +02:00
|
|
|
unsigned int readBufferLen;
|
|
|
|
bool isActive;
|
2007-09-16 14:18:15 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool OpenFile(void);
|
|
|
|
void CloseFile(void);
|
|
|
|
|
|
|
|
public:
|
|
|
|
cIptvProtocolFile();
|
|
|
|
virtual ~cIptvProtocolFile();
|
|
|
|
virtual int Read(unsigned char* *BufferAddr);
|
|
|
|
virtual bool Set(const char* Address, const int Port);
|
|
|
|
virtual bool Open(void);
|
|
|
|
virtual bool Close(void);
|
2007-10-08 00:54:09 +02:00
|
|
|
virtual cString GetInformation(void);
|
2007-09-16 14:18:15 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __IPTV_PROTOCOLFILE_H
|
|
|
|
|