mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-30 08:44:31 +00:00
engine: server: keep silence in case of unset or invalid rcon password
This commit is contained in:
parent
f3ed9b21c0
commit
2a05624615
@ -1075,18 +1075,22 @@ Redirect all printfs
|
|||||||
void SV_RemoteCommand( netadr_t from, sizebuf_t *msg )
|
void SV_RemoteCommand( netadr_t from, sizebuf_t *msg )
|
||||||
{
|
{
|
||||||
static char outputbuf[2048];
|
static char outputbuf[2048];
|
||||||
|
const char *adr;
|
||||||
char remaining[1024];
|
char remaining[1024];
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if( !rcon_enable.value )
|
if( !rcon_enable.value || !COM_CheckStringEmpty( rcon_password.string ))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Con_Printf( "Rcon from %s:\n%s\n", NET_AdrToString( from ), MSG_GetData( msg ) + 4 );
|
adr = NET_AdrToString( from );
|
||||||
Log_Printf( "Rcon: \"%s\" from \"%s\"\n", MSG_GetData( msg ) + 4, NET_AdrToString( from ));
|
|
||||||
SV_BeginRedirect( from, RD_PACKET, outputbuf, sizeof( outputbuf ) - 16, SV_FlushRedirect );
|
Con_Printf( "Rcon from %s:\n%s\n", adr, MSG_GetData( msg ) + 4 );
|
||||||
|
Log_Printf( "Rcon: \"%s\" from \"%s\"\n", MSG_GetData( msg ) + 4, adr );
|
||||||
|
|
||||||
if( Rcon_Validate( ))
|
if( Rcon_Validate( ))
|
||||||
{
|
{
|
||||||
|
SV_BeginRedirect( from, RD_PACKET, outputbuf, sizeof( outputbuf ) - 16, SV_FlushRedirect );
|
||||||
|
|
||||||
remaining[0] = 0;
|
remaining[0] = 0;
|
||||||
for( i = 2; i < Cmd_Argc(); i++ )
|
for( i = 2; i < Cmd_Argc(); i++ )
|
||||||
{
|
{
|
||||||
@ -1094,10 +1098,10 @@ void SV_RemoteCommand( netadr_t from, sizebuf_t *msg )
|
|||||||
Q_strncat( remaining, " ", sizeof( remaining ));
|
Q_strncat( remaining, " ", sizeof( remaining ));
|
||||||
}
|
}
|
||||||
Cmd_ExecuteString( remaining );
|
Cmd_ExecuteString( remaining );
|
||||||
|
|
||||||
|
SV_EndRedirect();
|
||||||
}
|
}
|
||||||
else Con_Printf( S_ERROR "Bad rcon_password.\n" );
|
else Con_Printf( S_ERROR "Bad rcon_password.\n" );
|
||||||
|
|
||||||
SV_EndRedirect();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user