blob: 223f253c78ae64cd2db41a02bb4a3fd813e0eb11 (
plain)
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
|
/*
* VdrmonThread
*/
#ifndef _VDRMON_THREAD
#define _VDRMON_THREAD
#include <sys/poll.h>
#include <vdr/plugin.h>
#include <vdr/thread.h>
#include <vdr/device.h>
#include <vdr/player.h>
#include <string>
using namespace std;
class cSelect;
class cAndroVdrThread : public cThread {
private:
cSelect * select;
int port;
const char * password;
bool forceCheckSvdrp;
public:
cAndroVdrThread(int port, const char * password, bool forceCheckSvdrp);
virtual void Action(void);
void Shutdown();
private:
virtual ~cAndroVdrThread();
void Cleanup();
bool Init();
};
#endif
|