mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 13:37:03 +02:00
34 lines
747 B
C++
34 lines
747 B
C++
/*
|
|
* 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"
|
|
|
|
class cIptvProtocolUdp : public cIptvUdpSocket, public cIptvProtocolIf {
|
|
private:
|
|
bool isIGMPv3M;
|
|
char* sourceAddrM;
|
|
char* streamAddrM;
|
|
int streamPortM;
|
|
|
|
public:
|
|
cIptvProtocolUdp();
|
|
virtual ~cIptvProtocolUdp();
|
|
int Read(unsigned char* bufferAddrP, unsigned int bufferLenP);
|
|
bool Set(const char* locationP, const int parameterP, const int indexP);
|
|
bool Open(void);
|
|
bool Close(void);
|
|
cString GetInformation(void);
|
|
};
|
|
|
|
#endif // __IPTV_PROTOCOLUDP_H
|
|
|