vdr-plugin-iptv/protocoludp.h

34 lines
738 B
C
Raw Normal View History

2007-09-14 17:44:25 +02: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 17:44:25 +02:00
class cIptvProtocolUdp : public cIptvUdpSocket, public cIptvProtocolIf {
2007-09-14 17:44:25 +02:00
private:
bool isIGMPv3;
char* sourceAddr;
2007-09-14 17:44:25 +02:00
char* streamAddr;
2012-03-31 19:32:04 +02:00
int streamPort;
2007-09-14 17:44:25 +02:00
public:
cIptvProtocolUdp();
virtual ~cIptvProtocolUdp();
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-09-14 17:44:25 +02:00
};
#endif // __IPTV_PROTOCOLUDP_H