Tagged Questions
3
votes
2answers
117 views
Memory Leak GETIPFROMHOST
I have this code right here to retrive the IP-address from a hostname:
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils,
winsock;
function GetIPFromHost(const HostName: string): string;
type
...
2
votes
2answers
227 views
Delphi wrappers for getnameinfo and getaddrinfo
I'm trying to find Delphi wrappers for getnameinfo and getaddrinfo socket APIs. Does anybody know where to find them or has created them and would not mind to share?
2
votes
1answer
204 views
PChar Invalid Pointer Operation on StrPLCopy
I write some TCP-server usin WinSock 2 and I hava procedure which catch FD_READ event. In this procedure I need to parse recieved message. The code is here:
procedure ...
2
votes
4answers
1k views
Delphi TClientSocket replacement using winsock2 and IOCP?
Is there such a thing? It needs to be asynchronous (no Indy).
1
vote
2answers
245 views
GetMem for one PChar variable change content of other PChar variable
So, I have the folowing problem. I have 2 PChar variables. I allocate memory for first, do some operations, allocate memory for the second variable - and on this step the first variable contains bad ...
1
vote
2answers
609 views