summaryrefslogtreecommitdiffstats
path: root/Tools/ProtoProxy/ProtoProxy.cpp
blob: 2724ef704aec0d3d98cf08473d80aeb4dc7f74cf (plain) (blame)
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

// ProtoProxy.cpp

// Implements the main app entrypoint

#include "Globals.h"
#include "Server.h"





int main(int argc, char ** argv)
{
	int ListenPort  = (argc > 1) ? atoi(argv[1]) : 25564;
	int ConnectPort = (argc > 2) ? atoi(argv[2]) : 25565;
	cServer Server;
	int res = Server.Init(ListenPort, ConnectPort);
	if (res != 0)
	{
		printf("Server initialization failed: %d", res);
		return res;
	}
	
	Server.Run();
	
	return 0;
}