From e2e78abdb74d9fa8f6ff161964a06f6612f3272b Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Fri, 18 Sep 2020 13:17:29 +0100 Subject: Style, no need to tag struct with s --- src/Protocol/ProtocolRecognizer.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Protocol/ProtocolRecognizer.cpp b/src/Protocol/ProtocolRecognizer.cpp index 521f9e247..b72f73f3d 100644 --- a/src/Protocol/ProtocolRecognizer.cpp +++ b/src/Protocol/ProtocolRecognizer.cpp @@ -25,9 +25,9 @@ -struct sUnsupportedButPingableProtocolException : public std::runtime_error +struct UnsupportedButPingableProtocolException : public std::runtime_error { - explicit sUnsupportedButPingableProtocolException() : + explicit UnsupportedButPingableProtocolException() : std::runtime_error("") { } @@ -37,9 +37,9 @@ struct sUnsupportedButPingableProtocolException : public std::runtime_error -struct sTriedToJoinWithUnsupportedProtocolException : public std::runtime_error +struct TriedToJoinWithUnsupportedProtocolException : public std::runtime_error { - explicit sTriedToJoinWithUnsupportedProtocolException(const std::string & a_Message) : + explicit TriedToJoinWithUnsupportedProtocolException(const std::string & a_Message) : std::runtime_error(a_Message) { } @@ -114,7 +114,7 @@ void cMultiVersionProtocol::HandleIncomingDataInRecognitionStage(cClientHandle & m_Protocol->DataReceived(m_Buffer, a_In.data(), a_In.size()); }; } - catch (const sUnsupportedButPingableProtocolException &) + catch (const UnsupportedButPingableProtocolException &) { // Got a server list ping for an unrecognised version, // switch into responding to unknown protocols mode: @@ -253,7 +253,7 @@ std::unique_ptr cMultiVersionProtocol::TryRecognizeLengthedProtocol(c a_Client.GetIPString().c_str(), PacketType ); - throw sTriedToJoinWithUnsupportedProtocolException( + throw TriedToJoinWithUnsupportedProtocolException( Printf("Your client isn't supported.\nTry connecting with Minecraft " MCS_CLIENT_VERSIONS, ProtocolVersion) ); } @@ -267,7 +267,7 @@ std::unique_ptr cMultiVersionProtocol::TryRecognizeLengthedProtocol(c { // TryRecognizeProtocol guarantees that we will have as much // data to read as the client claims in the protocol length field: - throw sTriedToJoinWithUnsupportedProtocolException("Incorrect amount of data received - hacked client?"); + throw TriedToJoinWithUnsupportedProtocolException("Incorrect amount of data received - hacked client?"); } // TODO: this should be a protocol property, not ClientHandle: @@ -310,12 +310,12 @@ std::unique_ptr cMultiVersionProtocol::TryRecognizeLengthedProtocol(c if (NextState != cProtocol::State::Status) { - throw sTriedToJoinWithUnsupportedProtocolException( + throw TriedToJoinWithUnsupportedProtocolException( Printf("Unsupported protocol version %u.\nTry connecting with Minecraft " MCS_CLIENT_VERSIONS, ProtocolVersion) ); } - throw sUnsupportedButPingableProtocolException(); + throw UnsupportedButPingableProtocolException(); } } } -- cgit v1.2.3