From b2214a56c4311b7ace927280a2c059816d5d63a8 Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 6 Jul 2013 19:45:36 +0000 Subject: ProtoProxy: moved into the Tools folder git-svn-id: http://mc-server.googlecode.com/svn/trunk@1657 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- Tools/ProtoProxy/ProtoProxy.cpp | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Tools/ProtoProxy/ProtoProxy.cpp (limited to 'Tools/ProtoProxy/ProtoProxy.cpp') diff --git a/Tools/ProtoProxy/ProtoProxy.cpp b/Tools/ProtoProxy/ProtoProxy.cpp new file mode 100644 index 000000000..0d61835e7 --- /dev/null +++ b/Tools/ProtoProxy/ProtoProxy.cpp @@ -0,0 +1,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; +} + + + + -- cgit v1.2.3