mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 17:08:01 +02:00
* Localhost fallback in case no DNS servers found. Patch from NiteHawk, fixes issue #41047
This commit is contained in:
parent
04a56e2900
commit
1cd1415df7
@ -2629,6 +2629,16 @@ end;
|
||||
Initialization section
|
||||
---------------------------------------------------------------------}
|
||||
|
||||
procedure FallbackToLocal;
|
||||
begin
|
||||
if Length(DNSServers) = 0 then
|
||||
begin
|
||||
//Writeln('No DNS servers detected/configured! Falling back to "localhost".');
|
||||
SetLength(DNSServers, 1);
|
||||
DNSServers[0]:=StrToNetAddr('127.0.0.1');
|
||||
end;
|
||||
end;
|
||||
|
||||
Procedure InitResolver;
|
||||
|
||||
begin
|
||||
@ -2662,6 +2672,8 @@ begin
|
||||
GetDNsservers(EtcPath + SResolveFile2)
|
||||
{$ENDIF OS2}
|
||||
;
|
||||
|
||||
FallbackToLocal; // if no nameservers found: fall back to 'localhost'
|
||||
end;
|
||||
|
||||
Procedure DoneResolver;
|
||||
|
Loading…
Reference in New Issue
Block a user