summaryrefslogtreecommitdiff
path: root/win/inspircd_namedpipe.h
blob: 4cd69ea0e09e5574883f7062eb6c19c5f4984fc5 (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
39
40
#ifndef INSPIRCD_NAMEDPIPE
#define INSPIRCD_NAMEDPIPE

#include "threadengine.h"
#include <windows.h>

class InspIRCd;

class IPCThread : public Thread
{
	BOOL Connected;
	CHAR Request[MAXBUF];
	DWORD BytesRead;
	BOOL Success;
	HANDLE Pipe;
	InspIRCd* ServerInstance;
 public:
	IPCThread(InspIRCd* Instance) : Thread(), ServerInstance(Instance)
	{
	}

	virtual ~IPCThread()
	{
	}

	virtual void Run();
};

class IPC
{
 private:
	InspIRCd* ServerInstance;
	IPCThread* thread;
 public:
	IPC(InspIRCd* Srv);
	void Check();
	~IPC();
};

#endif