vdr-plugin-iptv/protocolfile.h

39 lines
834 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.
*
* $Id: protocolfile.h,v 1.1 2007/09/16 12:18:15 ajhseppa Exp $
*/
#ifndef __IPTV_PROTOCOLFILE_H
#define __IPTV_PROTOCOLFILE_H
#include <arpa/inet.h>
#include "protocolif.h"
class cIptvProtocolFile : public cIptvProtocolIf {
private:
char* streamAddr;
int streamPort;
int fileDesc;
unsigned char* readBuffer;
unsigned int readBufferLen;
bool fileActive;
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);
};
#endif // __IPTV_PROTOCOLFILE_H