summaryrefslogtreecommitdiffstats
path: root/ProtoProxy/ProtoProxy.cpp
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-07-06 21:45:36 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-07-06 21:45:36 +0200
commitb2214a56c4311b7ace927280a2c059816d5d63a8 (patch)
tree7603dd3d50bf6ce25d0b8ce4ba432a79afe4cd0b /ProtoProxy/ProtoProxy.cpp
parentMemDumpAnalysis: moved into the Tools folder; uses the global Expat library now. (diff)
downloadcuberite-b2214a56c4311b7ace927280a2c059816d5d63a8.tar
cuberite-b2214a56c4311b7ace927280a2c059816d5d63a8.tar.gz
cuberite-b2214a56c4311b7ace927280a2c059816d5d63a8.tar.bz2
cuberite-b2214a56c4311b7ace927280a2c059816d5d63a8.tar.lz
cuberite-b2214a56c4311b7ace927280a2c059816d5d63a8.tar.xz
cuberite-b2214a56c4311b7ace927280a2c059816d5d63a8.tar.zst
cuberite-b2214a56c4311b7ace927280a2c059816d5d63a8.zip
Diffstat (limited to 'ProtoProxy/ProtoProxy.cpp')
-rw-r--r--ProtoProxy/ProtoProxy.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/ProtoProxy/ProtoProxy.cpp b/ProtoProxy/ProtoProxy.cpp
deleted file mode 100644
index 0d61835e7..000000000
--- a/ProtoProxy/ProtoProxy.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-
-// 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;
-}
-
-
-
-