blob: 0dd36469c58ec7c3d7cdc2180cc4ca88b3f22b67 (
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
38
|
/*
* 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 cVdrManagerThread : public cThread {
private:
cSelect * select;
int port;
const char * password;
bool forceCheckSvdrp;
int compressionMode;
public:
cVdrManagerThread(int port, const char * password, bool forceCheckSvdrp, int compressionMode);
virtual void Action(void);
void Shutdown();
private:
virtual ~cVdrManagerThread();
void Cleanup();
bool Init();
};
#endif
|