Browse Source

net_ws: allow to set custom IP address, use Q_strncpy instead of Q_strcpy

pull/2/head
Alibek Omarov 6 years ago
parent
commit
18353d9ae6
  1. 8
      engine/common/net_ws.c

8
engine/common/net_ws.c

@ -1615,15 +1615,15 @@ void NET_GetLocalAddress( void ) @@ -1615,15 +1615,15 @@ void NET_GetLocalAddress( void )
// If we have changed the ip var from the command line, use that instead.
if( Q_strcmp( net_ipname->string, "localhost" ))
{
Q_strcpy( buff, net_ipname->string );
Q_strncpy( buff, net_ipname->string, sizeof( buff ) );
}
else
{
pGetHostName( buff, 512 );
}
// ensure that it doesn't overrun the buffer
buff[511] = 0;
}
if( NET_StringToAdr( buff, &net_local ))
{
@ -1825,6 +1825,10 @@ void NET_Init( void ) @@ -1825,6 +1825,10 @@ void NET_Init( void )
if( Sys_GetParmFromCmdLine( "-port", cmd ) && Q_isdigit( cmd ))
Cvar_FullSet( "hostport", cmd, FCVAR_READ_ONLY );
// specify custom ip
if( Sys_GetParmFromCmdLine( "-ip", cmd ))
Cvar_FullSet( "ip", cmd, FCVAR_READ_ONLY );
// adjust clockwindow
if( Sys_GetParmFromCmdLine( "-clockwindow", cmd ))
Cvar_SetValue( "clockwindow", Q_atof( cmd ));

Loading…
Cancel
Save