Cleanup/add some comments

This commit is contained in:
Kawe Mazidjatari 2024-03-16 01:30:44 +01:00
parent 7c3d093c53
commit 430b2877ad
3 changed files with 3 additions and 2 deletions

View File

@ -9,7 +9,7 @@
// the maximum size of each data block fragment
#define MAX_DATABLOCK_FRAGMENT_SIZE 1024
// the maximum amount of fragments per data block
// the maximum amount of fragments per data block transfer
#define MAX_DATABLOCK_FRAGMENTS 768
#define DATABLOCK_DEBUG_NAME_LEN 64

View File

@ -110,7 +110,7 @@ void Script_RegisterCommonAbstractions(CSquirrelVM* s)
}
//---------------------------------------------------------------------------------
// Purpose: listen server constants (!!! only call on builds containing a listen server !!!)
// Purpose: listen server constants
// Input : *s -
//---------------------------------------------------------------------------------
void Script_RegisterListenServerConstants(CSquirrelVM* s)

View File

@ -10,5 +10,6 @@
//////////////////////////////////////////////////////////////////////
const char* CNetKey::GetBase64NetKey(void) const
{
// TODO: should we not acquire lock for m_Mutex here?
return m_szBase64;
}