Search Results

1
vote
3answers
317 views

Delphi TClientSocket replacement using winsock2 and IOCP?

Is there such a thing? It needs to be asynchronous (no Indy). …
0
votes
1answer
136 views

Vista 64 bit BSOD when running a Delphi 2009 Application.

Hi I have an application that I have converted to Delphi 2009 I have "String format checking" On and the standard memory manager. I downloaded the MS debugging tools at …
0
votes
2answers
86 views

TIdTCPServer not reading data from socket sometimes.

Hi I have the following code in the OnExecute of a TIdTCPServer (Delphi 2009 and Indy 10 that came with the installation) which is very similar to other examples on this site; …
0
votes

TIdTCPServer not reading data from socket sometimes.

It looks like your code should look like this; Socket := AContext.Connection.Socket; Socket.CheckForDataOnSource(10); if not Socket.InputBufferIsEmpty then begin Socket.InputBuffe …