2007-10-15 22:06:38 +02: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 15:31:21 +02:00
|
|
|
#include "socket.h"
|
2007-10-15 22:06:38 +02:00
|
|
|
|
2007-10-21 19:32:43 +02:00
|
|
|
class cIptvProtocolExt : public cIptvUdpSocket, public cIptvProtocolIf {
|
2007-10-15 22:06:38 +02:00
|
|
|
private:
|
2007-10-18 21:33:15 +02:00
|
|
|
int pid;
|
2008-02-17 20:18:47 +01:00
|
|
|
cString scriptFile;
|
2007-10-19 23:36:27 +02:00
|
|
|
int scriptParameter;
|
2007-10-15 22:06:38 +02:00
|
|
|
|
|
|
|
private:
|
2007-10-21 11:24:24 +02:00
|
|
|
void TerminateScript(void);
|
|
|
|
void ExecuteScript(void);
|
2007-10-15 22:06:38 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
cIptvProtocolExt();
|
|
|
|
virtual ~cIptvProtocolExt();
|
2009-02-26 15:04:12 +01:00
|
|
|
int Read(unsigned char* BufferAddr, unsigned int BufferLen);
|
2008-01-05 00:36:37 +01:00
|
|
|
bool Set(const char* Location, const int Parameter, const int Index);
|
|
|
|
bool Open(void);
|
|
|
|
bool Close(void);
|
|
|
|
cString GetInformation(void);
|
2007-10-15 22:06:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __IPTV_PROTOCOLEXT_H
|
|
|
|
|