Getting local IP address in Delphi - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-03T11:13:02Zhttp://stackoverflow.com/feeds/question/1143114http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1143114/getting-local-ip-address-in-delphi2Getting local IP address in Delphi [closed]Darius2009-07-17T13:01:50Z2009-07-17T13:09:58Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/576538/delphi-how-to-get-all-local-ips">Delphi, How to get all local IPs?</a> </p>
</blockquote>
<p>What's the easiest & quickest method for obtaining a local IP address of the machine in Delphi 2009 without using 3rd-party components? Thanks.</p>
http://stackoverflow.com/questions/1143114/getting-local-ip-address-in-delphi/1143167#11431673Answer by Kishork for Getting local IP address in DelphiKishork2009-07-17T13:09:58Z2009-07-17T13:09:58Z<p>From: <a href="http://www.scalabium.com/faq/dct0037.htm" rel="nofollow">http://www.scalabium.com/faq/dct0037.htm</a></p>
<pre><code>Function GetIPAddress():String;
type
pu_long = ^u_long;
var
varTWSAData : TWSAData;
varPHostEnt : PHostEnt;
varTInAddr : TInAddr;
namebuf : Array[0..255] of char;
begin
If WSAStartup($101,varTWSAData) <> 0 Then
Result := 'No. IP Address'
Else Begin
gethostname(namebuf,sizeof(namebuf));
varPHostEnt := gethostbyname(namebuf);
varTInAddr.S_addr := u_long(pu_long(varPHostEnt^.h_addr_list^)^);
Result := 'IP Address: '+inet_ntoa(varTInAddr);
End;
WSACleanup;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Label1.Caption := GetIPAddress;
end;
end.
</code></pre>
<p>Inlcudes:</p>
<p>uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Winsock;</p>