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.
|
|
|
|
*
|
2007-10-08 00:54:09 +02:00
|
|
|
* $Id: protocoludp.h,v 1.8 2007/10/07 22:54:09 rahrenbe Exp $
|
2007-09-14 17:44:25 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IPTV_PROTOCOLUDP_H
|
|
|
|
#define __IPTV_PROTOCOLUDP_H
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include "protocolif.h"
|
|
|
|
|
|
|
|
class cIptvProtocolUdp : public cIptvProtocolIf {
|
|
|
|
private:
|
|
|
|
char* streamAddr;
|
|
|
|
int streamPort;
|
|
|
|
int socketDesc;
|
2007-09-15 22:33:15 +02:00
|
|
|
unsigned char* readBuffer;
|
2007-09-28 18:44:59 +02:00
|
|
|
unsigned int readBufferLen;
|
2007-09-14 17:44:25 +02:00
|
|
|
struct sockaddr_in sockAddr;
|
2007-09-26 21:49:35 +02:00
|
|
|
bool isActive;
|
2007-09-14 17:44:25 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool OpenSocket(const int Port);
|
|
|
|
void CloseSocket(void);
|
|
|
|
bool JoinMulticast(void);
|
|
|
|
bool DropMulticast(void);
|
|
|
|
|
|
|
|
public:
|
|
|
|
cIptvProtocolUdp();
|
|
|
|
virtual ~cIptvProtocolUdp();
|
2007-09-15 23:27:00 +02:00
|
|
|
virtual int Read(unsigned char* *BufferAddr);
|
2007-09-14 17:44:25 +02:00
|
|
|
virtual bool Set(const char* Address, const int Port);
|
|
|
|
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
|
|
|
|
|