mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-03-22 00:41:00 +00:00
Starting up with all IP-addresses banned seems like a very bad idea...
This commit is contained in:
parent
e47536bb85
commit
b82d8d0e9f
1 changed files with 2 additions and 2 deletions
|
@ -100,8 +100,8 @@ char *StrAddr (struct qsockaddr *addr)
|
|||
|
||||
|
||||
#ifdef BAN_TEST
|
||||
unsigned long banAddr = 0x00000000;
|
||||
unsigned long banMask = 0xffffffff;
|
||||
unsigned long banAddr = ~0x0;
|
||||
unsigned long banMask = 0x0;
|
||||
|
||||
void NET_Ban_f (void)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue