Use FastWriter instead of StyledWriter
This commit is contained in:
parent
f0a16e6d28
commit
b02886a901
@ -1157,7 +1157,7 @@ void cProtocolRecognizer::SendPingStatusResponse(void)
|
|||||||
// Version:
|
// Version:
|
||||||
Json::Value Version;
|
Json::Value Version;
|
||||||
Version["name"] = "Cuberite " MCS_CLIENT_VERSIONS;
|
Version["name"] = "Cuberite " MCS_CLIENT_VERSIONS;
|
||||||
Version["protocol"] = 0; // Force client to think this is an invalid version (no other good default)
|
Version["protocol"] = MCS_LATEST_PROTOCOL_VERSION;
|
||||||
|
|
||||||
// Players:
|
// Players:
|
||||||
Json::Value Players;
|
Json::Value Players;
|
||||||
@ -1179,7 +1179,7 @@ void cProtocolRecognizer::SendPingStatusResponse(void)
|
|||||||
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::StyledWriter Writer;
|
Json::FastWriter Writer;
|
||||||
AString Response = Writer.write(ResponseValue);
|
AString Response = Writer.write(ResponseValue);
|
||||||
|
|
||||||
cPacketizer Pkt(*this, 0x00); // Response packet
|
cPacketizer Pkt(*this, 0x00); // Response packet
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
// Adjust these if a new protocol is added or an old one is removed:
|
// Adjust these if a new protocol is added or an old one is removed:
|
||||||
#define MCS_CLIENT_VERSIONS "1.8.x, 1.9.x, 1.10.x, 1.11.x"
|
#define MCS_CLIENT_VERSIONS "1.8.x, 1.9.x, 1.10.x, 1.11.x"
|
||||||
#define MCS_PROTOCOL_VERSIONS "47, 107, 108, 109, 110, 210, 315, 316"
|
#define MCS_PROTOCOL_VERSIONS "47, 107, 108, 109, 110, 210, 315, 316"
|
||||||
|
#define MCS_LATEST_PROTOCOL_VERSION 316
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -343,7 +343,7 @@ void cProtocol_1_10_0::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer)
|
|||||||
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::StyledWriter Writer;
|
Json::FastWriter Writer;
|
||||||
AString Response = Writer.write(ResponseValue);
|
AString Response = Writer.write(ResponseValue);
|
||||||
|
|
||||||
cPacketizer Pkt(*this, 0x00); // Response packet
|
cPacketizer Pkt(*this, 0x00); // Response packet
|
||||||
|
@ -2140,7 +2140,7 @@ void cProtocol_1_8_0::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer)
|
|||||||
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::StyledWriter Writer;
|
Json::FastWriter Writer;
|
||||||
AString Response = Writer.write(ResponseValue);
|
AString Response = Writer.write(ResponseValue);
|
||||||
|
|
||||||
cPacketizer Pkt(*this, 0x00); // Response packet
|
cPacketizer Pkt(*this, 0x00); // Response packet
|
||||||
|
@ -2162,7 +2162,7 @@ void cProtocol_1_9_0::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer)
|
|||||||
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::StyledWriter Writer;
|
Json::FastWriter Writer;
|
||||||
AString Response = Writer.write(ResponseValue);
|
AString Response = Writer.write(ResponseValue);
|
||||||
|
|
||||||
cPacketizer Pkt(*this, 0x00); // Response packet
|
cPacketizer Pkt(*this, 0x00); // Response packet
|
||||||
@ -4156,7 +4156,7 @@ void cProtocol_1_9_1::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer)
|
|||||||
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::StyledWriter Writer;
|
Json::FastWriter Writer;
|
||||||
AString Response = Writer.write(ResponseValue);
|
AString Response = Writer.write(ResponseValue);
|
||||||
|
|
||||||
cPacketizer Pkt(*this, 0x00); // Response packet
|
cPacketizer Pkt(*this, 0x00); // Response packet
|
||||||
@ -4213,7 +4213,7 @@ void cProtocol_1_9_2::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer)
|
|||||||
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::StyledWriter Writer;
|
Json::FastWriter Writer;
|
||||||
AString Response = Writer.write(ResponseValue);
|
AString Response = Writer.write(ResponseValue);
|
||||||
|
|
||||||
cPacketizer Pkt(*this, 0x00); // Response packet
|
cPacketizer Pkt(*this, 0x00); // Response packet
|
||||||
@ -4270,7 +4270,7 @@ void cProtocol_1_9_4::HandlePacketStatusRequest(cByteBuffer & a_ByteBuffer)
|
|||||||
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
ResponseValue["favicon"] = Printf("data:image/png;base64,%s", Favicon.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
Json::StyledWriter Writer;
|
Json::FastWriter Writer;
|
||||||
AString Response = Writer.write(ResponseValue);
|
AString Response = Writer.write(ResponseValue);
|
||||||
|
|
||||||
cPacketizer Pkt(*this, 0x00); // Response packet
|
cPacketizer Pkt(*this, 0x00); // Response packet
|
||||||
|
Loading…
Reference in New Issue
Block a user