2007-09-16 09:38:00 +00:00
|
|
|
/*
|
|
|
|
* protocolhttp.h: IPTV plugin for the Video Disk Recorder
|
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
2007-10-21 17:32:43 +00:00
|
|
|
* $Id: protocolhttp.h,v 1.11 2007/10/21 17:32:43 ajhseppa Exp $
|
2007-09-16 09:38:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __IPTV_PROTOCOLHTTP_H
|
|
|
|
#define __IPTV_PROTOCOLHTTP_H
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include "protocolif.h"
|
2007-10-21 13:31:21 +00:00
|
|
|
#include "socket.h"
|
2007-09-16 09:38:00 +00:00
|
|
|
|
2007-10-21 17:32:43 +00:00
|
|
|
class cIptvProtocolHttp : public cIptvTcpSocket, public cIptvProtocolIf {
|
2007-09-16 09:38:00 +00:00
|
|
|
private:
|
|
|
|
char* streamAddr;
|
2007-09-19 17:14:03 +00:00
|
|
|
char* streamPath;
|
2007-09-16 09:38:00 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
bool Connect(void);
|
|
|
|
bool Disconnect(void);
|
2007-09-29 10:55:14 +00:00
|
|
|
bool GetHeaderLine(char* dest, unsigned int destLen,
|
|
|
|
unsigned int &recvLen);
|
|
|
|
bool ProcessHeaders(void);
|
2007-09-16 09:38:00 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
cIptvProtocolHttp();
|
|
|
|
virtual ~cIptvProtocolHttp();
|
2007-10-21 17:32:43 +00:00
|
|
|
int Read(unsigned char* *BufferAddr);
|
2007-10-19 22:18:55 +00:00
|
|
|
virtual bool Set(const char* Location, const int Parameter, const int Index);
|
2007-09-16 09:38:00 +00:00
|
|
|
virtual bool Open(void);
|
|
|
|
virtual bool Close(void);
|
2007-10-07 22:54:09 +00:00
|
|
|
virtual cString GetInformation(void);
|
2007-09-16 09:38:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __IPTV_PROTOCOLHTTP_H
|
|
|
|
|