mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
added remote_checksum to postreq.
This commit is contained in:
parent
302a9c1378
commit
4b905325e6
@ -102,7 +102,9 @@ void CCompanion::RefreshServerList()
|
||||
void CCompanion::SendHostingPostRequest()
|
||||
{
|
||||
HostToken = "";
|
||||
bool result = r5net->PostServerHost(HostRequestMessage, HostToken, ServerListing{ MyServer.name, std::string(GameGlobals::HostState->m_levelName), "", GameGlobals::Cvar->FindVar("hostport")->m_pzsCurrentValue, MyServer.password});
|
||||
HostToken = std::string();
|
||||
HostRequestMessage = std::string();
|
||||
bool result = r5net->PostServerHost(HostRequestMessage, HostToken, ServerListing{ MyServer.name, std::string(GameGlobals::HostState->m_levelName), "", GameGlobals::Cvar->FindVar("hostport")->m_pzsCurrentValue, MyServer.password, std::to_string(*reinterpret_cast<std::int32_t*>(0x1656057E0)) /* checksum */});
|
||||
if (result)
|
||||
{
|
||||
HostRequestMessageColor = ImVec4(0.00f, 1.00f, 0.00f, 1.00f);
|
||||
@ -113,8 +115,6 @@ void CCompanion::SendHostingPostRequest()
|
||||
msg << "Share the following token for people to connect: ";
|
||||
}
|
||||
HostRequestMessage = msg.str().c_str();
|
||||
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -7,5 +7,6 @@ struct ServerListing
|
||||
std::string ip;
|
||||
std::string port;
|
||||
std::string password;
|
||||
std::string checksum;
|
||||
};
|
||||
|
||||
|
@ -30,6 +30,7 @@ bool R5Net::Client::PostServerHost(std::string& outMessage, std::string& outToke
|
||||
reqBody["map"] = serverListing.map;
|
||||
reqBody["port"] = serverListing.port;
|
||||
reqBody["password"] = serverListing.password;
|
||||
reqBody["remote_checksum"] = serverListing.checksum;
|
||||
|
||||
std::string reqBodyStr = reqBody.dump();
|
||||
|
||||
@ -45,8 +46,6 @@ bool R5Net::Client::PostServerHost(std::string& outMessage, std::string& outToke
|
||||
nlohmann::json resBody = nlohmann::json::parse(res->body);
|
||||
if (resBody["success"].is_boolean() && resBody["success"])
|
||||
{
|
||||
outMessage = "Broadcasting!";
|
||||
|
||||
if (resBody["token"].is_string())
|
||||
outToken = resBody["token"].get<std::string>();
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user