When compiling with the STANDALONE flag clients cannot connect to a server.
Repro:
compile with STANDALONE enabled.
start a server
start a separate client
connect to the server.
Actual Results:
client never connect with the client waiting for a challenge response.
Expected:
client promptly connects
NOTE: enabling com_standalone will allow clients to connect but this defeats the purpose of the STANDALONE flag.
Created attachment 2004[details]
Fix for STANDALONE flag connection bug.
The STANDALONE flag is supposed to forgo the talking to the auth server and send an immediate challengeResponse.
The code compiled with the STANDALONE flag checks the com_standalone setting. If it is not set the challengeResponse is skipped and nothing is sent back to the client leaving it hanging.
This patch removes the com_standalone cvar check.
Created attachment 2004 [details] Fix for STANDALONE flag connection bug. The STANDALONE flag is supposed to forgo the talking to the auth server and send an immediate challengeResponse. The code compiled with the STANDALONE flag checks the com_standalone setting. If it is not set the challengeResponse is skipped and nothing is sent back to the client leaving it hanging. This patch removes the com_standalone cvar check.