From 15f6fd312336885a0bbb7bb20edc67c0a6d0a134 Mon Sep 17 00:00:00 2001 From: PixieCore <41352111+PixieCore@users.noreply.github.com> Date: Wed, 15 Jun 2022 11:59:37 +0200 Subject: [PATCH] Few comments --- r5dev/engine/client/client.cpp | 2 +- r5dev/engine/server/server.cpp | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/r5dev/engine/client/client.cpp b/r5dev/engine/client/client.cpp index d534ae3b..07ccb670 100644 --- a/r5dev/engine/client/client.cpp +++ b/r5dev/engine/client/client.cpp @@ -6,7 +6,7 @@ // //===============================================================================// // client.cpp: implementation of the CClient class. -// +// This is the server implementation, maybe we should move it to engine/server ? /////////////////////////////////////////////////////////////////////////////////// #include "core/stdafx.h" #include "engine/client/client.h" diff --git a/r5dev/engine/server/server.cpp b/r5dev/engine/server/server.cpp index eb4d852f..3c3e2bdb 100644 --- a/r5dev/engine/server/server.cpp +++ b/r5dev/engine/server/server.cpp @@ -87,6 +87,7 @@ CClient* CServer::Authenticate(CServer* pServer, user_creds_s* pInpacket) { Warning(eDLL_T::SERVER, "Connection rejected for '%s' ('%llu' is banned from this server!)\n", svIpAddress.c_str(), pInpacket->m_nNucleusID); } + return nullptr; } } @@ -119,5 +120,5 @@ void CServer_Detach() } /////////////////////////////////////////////////////////////////////////////// -bool g_bCheckCompBanDB = true; +bool g_bCheckCompBanDB = true; // Maybe make this a static method in CServer? It won't be added to the struct offsets then. CServer* g_pServer = nullptr; \ No newline at end of file