-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathServer.h
50 lines (32 loc) · 834 Bytes
/
Server.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
#pragma once
#include "StatTracker.h"
#include "Config.h"
class CPhatServer
{
public:
CPhatServer(const char *configFileName = DEFAULT_CONFIG_FILE);
~CPhatServer();
void Tick(void);
void KickClient(WORD);
void BanClient(WORD);
void SystemBroadcast(char *text);
u_short GetPort();
CStatTracker &Stats();
CPhatACServerConfig &Config();
double GetStartupTime() { return m_fStartupTime; }
private:
bool Init();
void Shutdown();
void InitializeSocket(unsigned short port, in_addr address);
static DWORD WINAPI InternalThreadProcStatic(LPVOID lpThis);
DWORD InternalThreadProc();
SOCKET m_sockets[10];
int m_socketCount;
in_addr m_hostaddr;
u_short m_hostport;
CStatTracker m_Stats;
CPhatACServerConfig m_Config;
HANDLE m_hQuitEvent = NULL;
HANDLE m_hServerThread = NULL;
double m_fStartupTime;
};