From 3ac98f3f26e4893c96a7dc149684bc3df15e753e Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sat, 20 Oct 2012 21:52:34 +0000 Subject: ProtoProxy: ListenPort and ConnectPort are now settable on commandline, the defaults have switched (listens on 25564, connects to localhost:25565) git-svn-id: http://mc-server.googlecode.com/svn/trunk@992 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- ProtoProxy/Server.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'ProtoProxy/Server.cpp') diff --git a/ProtoProxy/Server.cpp b/ProtoProxy/Server.cpp index 7eaa728ad..2b715b5c1 100644 --- a/ProtoProxy/Server.cpp +++ b/ProtoProxy/Server.cpp @@ -46,6 +46,9 @@ int cServer::Init(short a_ListenPort, short a_ConnectPort) local.sin_port = htons(a_ListenPort); bind(m_ListenSocket, (sockaddr *)&local, sizeof(local)); listen(m_ListenSocket, 1); + + printf("Listening on port %d, connecting to localhost:%d\n", a_ListenPort, a_ConnectPort); + return 0; } -- cgit v1.2.3