diff options
Diffstat (limited to 'src/server/authserver/Server/AuthSession.h')
-rw-r--r-- | src/server/authserver/Server/AuthSession.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/server/authserver/Server/AuthSession.h b/src/server/authserver/Server/AuthSession.h index 14129d76fd8..2ba6b3efdd4 100644 --- a/src/server/authserver/Server/AuthSession.h +++ b/src/server/authserver/Server/AuthSession.h @@ -32,7 +32,7 @@ struct AuthHandler; class AuthSession : public Socket<AuthSession, ByteBuffer> { - typedef Socket<AuthSession, ByteBuffer> Base; + typedef Socket<AuthSession, ByteBuffer> AuthSocket; public: static std::unordered_map<uint8, AuthHandler> InitHandlers(); @@ -48,7 +48,6 @@ public: AsyncReadHeader(); } - using Base::AsyncWrite; void AsyncWrite(ByteBuffer& packet); protected: |