mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Entirely ignore PT_ASKINFOVIAMS packets, since it turns out it's not even sent by the MS anyway
This commit is contained in:
parent
3928b75b7a
commit
d20efa5a74
1 changed files with 4 additions and 0 deletions
|
@ -3413,6 +3413,7 @@ static void HandlePacketFromAwayNode(SINT8 node)
|
|||
switch (netbuffer->packettype)
|
||||
{
|
||||
case PT_ASKINFOVIAMS:
|
||||
#if 0
|
||||
if (server && serverrunning)
|
||||
{
|
||||
INT32 clientnode;
|
||||
|
@ -3434,6 +3435,9 @@ static void HandlePacketFromAwayNode(SINT8 node)
|
|||
}
|
||||
else
|
||||
Net_CloseConnection(node); // you're not supposed to get it, so ignore it
|
||||
#else
|
||||
Net_CloseConnection(node);
|
||||
#endif
|
||||
break;
|
||||
|
||||
case PT_ASKINFO:
|
||||
|
|
Loading…
Reference in a new issue