Ejemplo n.º 1
0
bool RakServer::HasPassword( void )
{
	return GetIncomingPassword()->GetNumberOfBytesUsed() > 0;
}
Ejemplo n.º 2
0
bool RakServer::HasPassword( void )
{
	int passwordLength;
	GetIncomingPassword(0, &passwordLength);
	return passwordLength > 0;
}