mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12: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...
|
if (buffer[i] == XMLSOCKET_PACKET_TERMINATOR) // Read until \0...
|
||||||
{
|
{
|
||||||
byte[] packet = currentPacket.ToArray();
|
byte[] packet = currentPacket.ToArray();
|
||||||
|
|
||||||
if (Helper.ByteArrayStartsWith(packet, XMLSOCKET_POLICY_FILE))
|
if (Helper.ByteArrayStartsWith(packet, XMLSOCKET_POLICY_FILE))
|
||||||
this.Send(CrossDomainPolicy.GetPolicyFile());
|
this.Send(CrossDomainPolicy.GetPolicyFile());
|
||||||
|
else
|
||||||
|
onReceiveCallback(packet);
|
||||||
|
|
||||||
|
|
||||||
onReceiveCallback(packet);
|
|
||||||
currentPacket.Clear();
|
currentPacket.Clear();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue