Registriert seit: 30. Sep 2006
Ort: Gundelfingen
1.109 Beiträge
Delphi 2007 Professional
|
Re: [erledigt]DynDNS Updater
14. Mai 2010, 14:28
Delphi-Quellcode:
uses
IdHTTP;
// ...
with TIdHTTP.Create(self) do
try
Request.BasicAuthentication := True;
Request.Username := 'MaxMustermann';
Request.Password := 'GanzGeheim';
Get(Format('http://dyndns.org/nic/update?system=dyndns&hostname=%s&myip=%s', ['mein.host.de', '127.0.0.1']));
finally
Free;
end;
Mal so ins Blaue geraten, ohne das ganze auszuprobieren
Dominik Wer anderen eine Grube gräbt, hat ein Gruben-Grab-Gerät!
|