diff options
Diffstat (limited to '')
-rw-r--r-- | ProtoProxy/Server.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
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;
}
|