1
0
mirror of https://github.com/rofafor/vdr-plugin-iptv.git synced 2023-10-10 13:37:03 +02:00
vdr-plugin-iptv/protocoludp.h

35 lines
799 B
C
Raw Permalink Normal View History

2007-09-14 15:44:25 +00:00
/*
* protocoludp.h: IPTV plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#ifndef __IPTV_PROTOCOLUDP_H
#define __IPTV_PROTOCOLUDP_H
#include <arpa/inet.h>
#include "protocolif.h"
#include "socket.h"
2007-09-14 15:44:25 +00:00
class cIptvProtocolUdp : public cIptvUdpSocket, public cIptvProtocolIf {
2007-09-14 15:44:25 +00:00
private:
2013-02-23 15:31:11 +02:00
bool isIGMPv3M;
char* sourceAddrM;
char* streamAddrM;
int streamPortM;
2007-09-14 15:44:25 +00:00
public:
cIptvProtocolUdp();
virtual ~cIptvProtocolUdp();
2013-02-23 15:31:11 +02:00
int Read(unsigned char* bufferAddrP, unsigned int bufferLenP);
2014-02-09 19:22:02 +02:00
bool SetSource(const char* locationP, const int parameterP, const int indexP);
bool SetPid(int pidP, int typeP, bool onP);
2008-01-04 23:36:37 +00:00
bool Open(void);
bool Close(void);
cString GetInformation(void);
2007-09-14 15:44:25 +00:00
};
#endif // __IPTV_PROTOCOLUDP_H