mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 13:37:03 +02:00
37 lines
787 B
C++
37 lines
787 B
C++
/*
|
|
* 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"
|
|
#include "socket.h"
|
|
|
|
class cIptvProtocolExt : public cIptvUdpSocket, public cIptvProtocolIf {
|
|
private:
|
|
int pid;
|
|
cString scriptFile;
|
|
int scriptParameter;
|
|
|
|
private:
|
|
void TerminateScript(void);
|
|
void ExecuteScript(void);
|
|
|
|
public:
|
|
cIptvProtocolExt();
|
|
virtual ~cIptvProtocolExt();
|
|
int Read(unsigned char* BufferAddr, unsigned int BufferLen);
|
|
bool Set(const char* Location, const int Parameter, const int Index);
|
|
bool Open(void);
|
|
bool Close(void);
|
|
cString GetInformation(void);
|
|
};
|
|
|
|
#endif // __IPTV_PROTOCOLEXT_H
|
|
|