Fixed byte order of stream size in TBlockSocket.InternalSendStream.
git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@127 7c85be65-684b-0410-a082-b2ed4fbef004
This commit is contained in:
parent
b3eb745180
commit
667c41c07a
@ -1,5 +1,5 @@
|
||||
{==============================================================================|
|
||||
| Project : Ararat Synapse | 009.008.002 |
|
||||
| Project : Ararat Synapse | 009.008.003 |
|
||||
|==============================================================================|
|
||||
| Content: Library base |
|
||||
|==============================================================================|
|
||||
@ -2087,8 +2087,8 @@ begin
|
||||
if WithSize then
|
||||
begin
|
||||
l := Stream.Size - Stream.Position;;
|
||||
if Indy then
|
||||
l := SwapBytes(l);
|
||||
if not Indy then
|
||||
l := synsock.HToNL(l);
|
||||
end;
|
||||
repeat
|
||||
{$IFDEF CIL}
|
||||
|
Loading…
x
Reference in New Issue
Block a user