mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-05 13:02:44 +13:00
Dont process XML policy request as a hi1 packet.
This commit is contained in:
parent
f716fedec5
commit
b665061308
1 changed files with 4 additions and 1 deletions
|
@ -20,10 +20,13 @@ namespace HISP.Server.Network
|
|||
if (buffer[i] == XMLSOCKET_PACKET_TERMINATOR) // Read until \0...
|
||||
{
|
||||
byte[] packet = currentPacket.ToArray();
|
||||
|
||||
if (Helper.ByteArrayStartsWith(packet, XMLSOCKET_POLICY_FILE))
|
||||
this.Send(CrossDomainPolicy.GetPolicyFile());
|
||||
else
|
||||
onReceiveCallback(packet);
|
||||
|
||||
|
||||
onReceiveCallback(packet);
|
||||
currentPacket.Clear();
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue