vdr-plugin-iptv/protocoludp.h

36 lines
822 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.
*
* $Id: protocoludp.h,v 1.12 2007/10/21 17:32:43 ajhseppa Exp $
2007-09-14 17:44:25 +02:00
*/
#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:
char* streamAddr;
private:
bool JoinMulticast(void);
bool DropMulticast(void);
public:
cIptvProtocolUdp();
virtual ~cIptvProtocolUdp();
int Read(unsigned char* *BufferAddr);
virtual bool Set(const char* Location, const int Parameter, const int Index);
2007-09-14 17:44:25 +02:00
virtual bool Open(void);
virtual bool Close(void);
2007-10-08 00:54:09 +02:00
virtual cString GetInformation(void);
2007-09-14 17:44:25 +02:00
};
#endif // __IPTV_PROTOCOLUDP_H