Sending real ip address, port and server name.
This commit is contained in:
parent
be1c3e2af0
commit
0cb7940bae
|
@ -20,6 +20,9 @@
|
||||||
#include <WinTimer.h>
|
#include <WinTimer.h>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
|
//For conversion from wstring to string
|
||||||
|
#include <codecvt>
|
||||||
|
|
||||||
using namespace DanBias;
|
using namespace DanBias;
|
||||||
using namespace Oyster::Network;
|
using namespace Oyster::Network;
|
||||||
using namespace Oyster::Thread;
|
using namespace Oyster::Thread;
|
||||||
|
@ -43,6 +46,11 @@ namespace
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
std::string wstring_to_utf8 (const std::wstring& str)
|
||||||
|
{
|
||||||
|
std::wstring_convert<std::codecvt_utf8<wchar_t>> myconv;
|
||||||
|
return myconv.to_bytes(str);
|
||||||
|
}
|
||||||
|
|
||||||
DanBiasServerReturn GameServerAPI::ServerInitiate(const ServerInitDesc& desc)
|
DanBiasServerReturn GameServerAPI::ServerInitiate(const ServerInitDesc& desc)
|
||||||
{
|
{
|
||||||
|
@ -50,7 +58,9 @@ DanBiasServerReturn GameServerAPI::ServerInitiate(const ServerInitDesc& desc)
|
||||||
opt.mainOptions.listenPort = desc.listenPort;
|
opt.mainOptions.listenPort = desc.listenPort;
|
||||||
opt.mainOptions.ownerSession = &lobby;
|
opt.mainOptions.ownerSession = &lobby;
|
||||||
|
|
||||||
GameLogic::Protocol_Broadcast_Test broadcastMessage(opt.mainOptions.listenPort, "127.0.0.1", "ServerName");
|
std::string serverName = wstring_to_utf8(desc.serverName);
|
||||||
|
|
||||||
|
GameLogic::Protocol_Broadcast_Test broadcastMessage(opt.mainOptions.listenPort, "127.0.0.1", serverName);
|
||||||
|
|
||||||
opt.broadcastOptions.broadcast = true;
|
opt.broadcastOptions.broadcast = true;
|
||||||
opt.broadcastOptions.broadcastInterval = 1.0f;
|
opt.broadcastOptions.broadcastInterval = 1.0f;
|
||||||
|
@ -64,6 +74,9 @@ DanBiasServerReturn GameServerAPI::ServerInitiate(const ServerInitDesc& desc)
|
||||||
|
|
||||||
std::printf("Server created!\t-\t%s: [%i]\n\n", server.GetLanAddress().c_str(), desc.listenPort);
|
std::printf("Server created!\t-\t%s: [%i]\n\n", server.GetLanAddress().c_str(), desc.listenPort);
|
||||||
|
|
||||||
|
GameLogic::Protocol_Broadcast_Test broadcastMessage2(opt.mainOptions.listenPort, server.GetLanAddress(), serverName);
|
||||||
|
server.SetBroadcastMessage(broadcastMessage2.GetProtocol());
|
||||||
|
|
||||||
return DanBiasServerReturn_Sucess;
|
return DanBiasServerReturn_Sucess;
|
||||||
}
|
}
|
||||||
void GameServerAPI::ServerStart()
|
void GameServerAPI::ServerStart()
|
||||||
|
|
|
@ -133,6 +133,7 @@ struct NetworkClient::PrivateData : public IThreadObject
|
||||||
CloseHandle(shutdownEvent);
|
CloseHandle(shutdownEvent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Thread for receiving broadcast messages
|
||||||
void BroadcastThread()
|
void BroadcastThread()
|
||||||
{
|
{
|
||||||
WSANETWORKEVENTS wsaEvents;
|
WSANETWORKEVENTS wsaEvents;
|
||||||
|
|
Loading…
Reference in New Issue