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:
|
2013-02-23 14:31:11 +01:00
|
|
|
int pidM;
|
|
|
|
cString scriptFileM;
|
|
|
|
int scriptParameterM;
|
|
|
|
int streamPortM;
|
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();
|
2013-02-23 14:31:11 +01:00
|
|
|
int Read(unsigned char* bufferAddrP, unsigned int bufferLenP);
|
|
|
|
bool Set(const char* locationP, const int parameterP, const int indexP);
|
2008-01-05 00:36:37 +01:00
|
|
|
bool Open(void);
|
|
|
|
bool Close(void);
|
|
|
|
cString GetInformation(void);
|
2007-10-15 22:06:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __IPTV_PROTOCOLEXT_H
|
|
|
|
|