1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-25 22:42:04 +02:00

* it's possible to use other port than 3030 by passing it as an additional argument

* removed some redundant warnings
* minor improvements for marketplace
This commit is contained in:
Michał W. Urbańczyk
2008-09-09 01:40:43 +00:00
parent 680cbf662a
commit 6233066b91
6 changed files with 35 additions and 8 deletions

View File

@@ -22,9 +22,10 @@ using namespace boost::asio;
using namespace boost::asio::ip;
bool end2 = false;
int port = 3030;
CVCMIServer::CVCMIServer()
: io(new io_service()), acceptor(new tcp::acceptor(*io, tcp::endpoint(tcp::v4(), 3030)))
: io(new io_service()), acceptor(new tcp::acceptor(*io, tcp::endpoint(tcp::v4(), port)))
{
std::cout << "CVCMIServer created!" <<std::endl;
}
@@ -128,6 +129,15 @@ int _tmain(int argc, _TCHAR* argv[])
int main(int argc, _TCHAR* argv[])
#endif
{
if(argc > 1)
{
#ifdef _MSC_VER
port = _tstoi(argv[1]);
#else
port = _ttoi(argv[1]);
#endif
}
std::cout << "Port " << port << " will be used." << std::endl;
CLodHandler h3bmp;
h3bmp.init("Data" PATHSEPARATOR "H3bitmap.lod","Data");
initDLL(&h3bmp);