forked from rofafor/vdr-plugin-iptv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsocket.h
82 lines (70 loc) · 1.94 KB
/
socket.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
* socket.h: IPTV plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
*/
#pragma once
#include <arpa/inet.h>
#ifdef __FreeBSD__
#include <netinet/in.h>
#endif // __FreeBSD__
class cIptvSocket {
private:
int socketPortM;
protected:
enum {
eReportIntervalS = 300 // in seconds
};
int socketDescM;
struct sockaddr_in sockAddrM;
time_t lastErrorReportM;
int packetErrorsM;
int sequenceNumberM;
bool isActiveM;
protected:
bool OpenSocket(int portP, bool isUdpP);
void CloseSocket();
bool CheckAddress(const char *addrP, in_addr_t *inAddrP);
public:
cIptvSocket();
virtual ~cIptvSocket();
};
class cIptvUdpSocket : public cIptvSocket {
private:
in_addr_t streamAddrM;
in_addr_t sourceAddrM;
bool useIGMPv3M;
public:
cIptvUdpSocket();
~cIptvUdpSocket() override;
virtual int Read(unsigned char *bufferAddrP, unsigned int bufferLenP);
bool OpenSocket(int Port);
bool OpenSocket(int Port, const char *streamAddrP, const char *sourceAddrP, bool useIGMPv3P);
void CloseSocket();
bool JoinMulticast();
bool DropMulticast();
};
class cIptvTcpSocket : public cIptvSocket {
public:
cIptvTcpSocket();
~cIptvTcpSocket() override;
virtual int Read(unsigned char *bufferAddrP, unsigned int bufferLenP);
bool OpenSocket(int portP, const char *streamAddrP);
void CloseSocket();
bool ConnectSocket();
bool ReadChar(char *bufferAddrP, unsigned int timeoutMsP);
bool Write(const char *bufferAddrP, unsigned int bufferLenP);
};
class cIptvTcpServerSocket : public cIptvSocket {
private:
int clientSocketDescM;
public:
cIptvTcpServerSocket();
~cIptvTcpServerSocket() override;
virtual int Read(unsigned char *bufferAddrP, unsigned int bufferLenP);
bool OpenSocket(int portP, bool isUdpP = false);
void CloseSocket();
bool Accept();
bool ClientConnected();
};