diff options
| author | Shauren <shauren.trinity@gmail.com> | 2014-10-11 22:45:01 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2014-10-11 22:45:01 +0200 |
| commit | cbabfe99200be41be0f6362756d044b653065171 (patch) | |
| tree | 9079e105b23f592fd924a37b479f7a2cde6389ac /src/server/bnetserver/Packets/AuthenticationPackets.cpp | |
| parent | 26e4b67e851d92475e603e7073b2558427c6d23f (diff) | |
Core/Battle.net: Handle ConnectionClosing
Diffstat (limited to 'src/server/bnetserver/Packets/AuthenticationPackets.cpp')
| -rw-r--r-- | src/server/bnetserver/Packets/AuthenticationPackets.cpp | 6 |
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); } |
