Light improvements

Update comments.
Proper type for 'user_creds::m_nUserID'.
Proper type for 'CClient::SetUserID'.
Added 'CClient::SetHandle'.
This commit is contained in:
Kawe Mazidjatari 2022-06-14 21:53:03 +02:00
parent c708d73c02
commit ff59db1b95
4 changed files with 15 additions and 6 deletions

View File

@ -20,7 +20,7 @@ CClient* CClient::GetClient(int nIndex) const
}
//---------------------------------------------------------------------------------
// Purpose: gets the userID of this client
// Purpose: gets the handle of this client
//---------------------------------------------------------------------------------
uint16_t CClient::GetHandle(void) const
{
@ -36,7 +36,7 @@ uint32_t CClient::GetUserID(void) const
}
//---------------------------------------------------------------------------------
// Purpose: gets the userID of this client
// Purpose: gets the originID of this client
//---------------------------------------------------------------------------------
uint64_t CClient::GetOriginID(void) const
{
@ -83,10 +83,18 @@ const char* CClient::GetClientName(void) const
return m_szClientName;
}
//---------------------------------------------------------------------------------
// Purpose: sets the handle of this client
//---------------------------------------------------------------------------------
void CClient::SetHandle(uint16_t nHandle)
{
m_nHandle = nHandle;
}
//---------------------------------------------------------------------------------
// Purpose: sets the userID of this client
//---------------------------------------------------------------------------------
void CClient::SetUserID(std::int32_t nUserID)
void CClient::SetUserID(uint32_t nUserID)
{
m_nUserID = nUserID;
}

View File

@ -24,7 +24,8 @@ public:
CNetChan* GetNetChan(void) const;
const char* GetServerName(void) const;
const char* GetClientName(void) const;
void SetUserID(int32_t nUserID);
void SetHandle(uint16_t nHandle);
void SetUserID(uint32_t nUserID);
void SetOriginID(uint64_t nOriginID);
void SetSignonState(SIGNONSTATE nSignonState);
void SetPersistenceState(PERSISTENCE nPersistenceState);

View File

@ -23,7 +23,7 @@ struct user_creds_s
int32_t m_nchallenge;
uint8_t gap2[8];
uint64_t m_nNucleusID;
int64_t m_nUserID;
uint8_t* m_nUserID;
};
class CServer : public IServer

View File

@ -13,7 +13,7 @@ public:
void DeleteEntry(string svIpAddress, uint64_t nOriginID);
void AddConnectionRefuse(string svError, uint64_t nOriginID);
void DeleteConnectionRefuse(uint64_t nUserID);
void DeleteConnectionRefuse(uint64_t nOriginID);
void BanListCheck(void);