aboutsummaryrefslogtreecommitdiff
path: root/src/server/bnetserver/Packets/AuthenticationPackets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/bnetserver/Packets/AuthenticationPackets.cpp')
-rw-r--r--src/server/bnetserver/Packets/AuthenticationPackets.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/bnetserver/Packets/AuthenticationPackets.cpp b/src/server/bnetserver/Packets/AuthenticationPackets.cpp
index ae2db016972..c1362cd5f03 100644
--- a/src/server/bnetserver/Packets/AuthenticationPackets.cpp
+++ b/src/server/bnetserver/Packets/AuthenticationPackets.cpp
@@ -50,7 +50,7 @@ std::string Battlenet::Authentication::LogonRequest::ToString() const
return stream.str();
}
-void Battlenet::Authentication::LogonRequest::CallHandler(Session* session) const
+void Battlenet::Authentication::LogonRequest::CallHandler(Session* session)
{
session->HandleLogonRequest(*this);
}
@@ -89,7 +89,7 @@ std::string Battlenet::Authentication::ResumeRequest::ToString() const
return stream.str();
}
-void Battlenet::Authentication::ResumeRequest::CallHandler(Session* session) const
+void Battlenet::Authentication::ResumeRequest::CallHandler(Session* session)
{
session->HandleResumeRequest(*this);
}
@@ -153,7 +153,7 @@ std::string Battlenet::Authentication::ProofResponse::ToString() const
return stream.str();
}
-void Battlenet::Authentication::ProofResponse::CallHandler(Session* session) const
+void Battlenet::Authentication::ProofResponse::CallHandler(Session* session)
{
session->HandleProofResponse(*this);
}