You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm reffering to lines 88 and 89 in JSocket.as:
var buffer:String = soc.readUTFBytes(soc.bytesAvailable);
ExternalInterface.call('JSocket.dataHandler', socid, buffer.replace(ESCAPER_REG, '\'));
Can i predict from them, that my protocol will crash by creating escape sequences within the generated binary stream? I've been testing a while, but the communication crashes after a few moments.
The text was updated successfully, but these errors were encountered:
Hi
I'm reffering to lines 88 and 89 in JSocket.as:
var buffer:String = soc.readUTFBytes(soc.bytesAvailable);
ExternalInterface.call('JSocket.dataHandler', socid, buffer.replace(ESCAPER_REG, '\'));
Can i predict from them, that my protocol will crash by creating escape sequences within the generated binary stream? I've been testing a while, but the communication crashes after a few moments.
The text was updated successfully, but these errors were encountered: