2007-10-15 20:06:38 +00:00
|
|
|
/*
|
|
|
|
* protocolext.h: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IPTV_PROTOCOLEXT_H
|
|
|
|
#define __IPTV_PROTOCOLEXT_H
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include "protocolif.h"
|
2007-10-21 13:31:21 +00:00
|
|
|
#include "socket.h"
|
2007-10-15 20:06:38 +00:00
|
|
|
|
2007-10-21 17:32:43 +00:00
|
|
|
class cIptvProtocolExt : public cIptvUdpSocket, public cIptvProtocolIf {
|
2007-10-15 20:06:38 +00:00
|
|
|
private:
|
2007-10-18 19:33:15 +00:00
|
|
|
int pid;
|
2008-02-17 19:18:47 +00:00
|
|
|
cString scriptFile;
|
2007-10-19 21:36:27 +00:00
|
|
|
int scriptParameter;
|
2007-10-15 20:06:38 +00:00
|
|
|
|
|
|
|
private:
|
2007-10-21 09:24:24 +00:00
|
|
|
void TerminateScript(void);
|
|
|
|
void ExecuteScript(void);
|
2007-10-15 20:06:38 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
cIptvProtocolExt();
|
|
|
|
virtual ~cIptvProtocolExt();
|
2009-02-26 16:04:12 +02:00
|
|
|
int Read(unsigned char* BufferAddr, unsigned int BufferLen);
|
2008-01-04 23:36:37 +00:00
|
|
|
bool Set(const char* Location, const int Parameter, const int Index);
|
|
|
|
bool Open(void);
|
|
|
|
bool Close(void);
|
|
|
|
cString GetInformation(void);
|
2007-10-15 20:06:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __IPTV_PROTOCOLEXT_H
|
|
|
|
|