ARC1234 0 Newbie Poster

Hi,

I am using delphi 7 TClientSocket Component non blocking socket. When data arrive on socket i have mapped TClientSocke.OnRead to MyRead function.

function MyRead(Socket: TCustomWinSocket)
var
begin
Log('ReadIN......');
//Class variable
MemoryStream := TMemoryStream.Create;
RcvLen := Socket.ReceiveLength;
MemoryStream.SetSize( RcvLen );
MemoryStream.SetSize( Socket.ReceiveBuf( MemoryStream.Memory^, RcvLen ) );
FReceiveNotify( Self, MemoryStream.Memory^, MemoryStream.Size );
Log('ReadOu......');
end;

The problem i am facing is when i read data from socket but did not return from MyRead function and send notifcation to upper layer to process data at the same time I recevie another read and corrupts my MemoryStream object. How it is possible? I did not reales calling thread, then how can another read read came?
What is the mechanis of OnRead is this called from socket from multiple threads.

Please help me out on this.

Regards, IK

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.