Jump to content

e.c

Members
  • Content Count

    1
  • Joined

  • Last visited

Community Reputation

0 Neutral
  1. Good morning ! We had a little trouble debugging this way. Here is a suggested adjustment, if possible. At OverbyteIcsWebSocketCli.pas, line 954: ... if State in [wsfsCompleted, wsfsNotComplete] then begin j := 0; for i := 0 to DataBytesInBuf-1 do begin { PData^ := PData^ xor Mask[j]; // Original } {$R-} PData^ := PData^ xor Mask[j]; {$R+} // Suggestion Inc(j); if j > 3 then j := 0; end; end; ... Thank you for your attention.
×