 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Atmapuri Guest
|
Posted: Sat Mar 06, 2004 11:18 am Post subject: Getting the IP address! |
|
|
Hi!
How do I get the IP address of the PC using sockets?
Thanks!
Atmapuri
|
|
| Back to top |
|
 |
Sercan Oz Guest
|
Posted: Sat Mar 06, 2004 10:48 pm Post subject: Re: Getting the IP address! |
|
|
Try this
function GetAddr : string;
var
i: integer;
addr: PChar;
begin
i := sizeof(Sin);
getpeername(soket,Sin,i);
Addr := inet_ntoa(Sin.sin_addr);
Result := StrPas(Addr);
end;
Best Regards
Sercan
**Sin : TSockaddrin;Soket:TSocket;
"Atmapuri" <janez.makovsek (AT) usa (DOT) net> wrote
| Quote: | Hi!
How do I get the IP address of the PC using sockets?
Thanks!
Atmapuri
|
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|