Commit 8467866f by Dmitriy Anisimkov Committed by Pierre-Marie de Rodat

[Ada] Fix IPv6 numeric address detection

IPv6 numeric address can't have less than 2 colons. It fixes the error
when Get_Host_By_Name called with hostname composed by only hexadecimal
symbols.

2019-08-12  Dmitriy Anisimkov  <anisimko@adacore.com>

gcc/ada/

	* libgnat/g-socket.adb (Is_IPv6_Address): Check that no less
	then 2 colons in IPv6 numeric address.

From-SVN: r274308
parent 4a2e9be1
2019-08-12 Dmitriy Anisimkov <anisimko@adacore.com> 2019-08-12 Dmitriy Anisimkov <anisimko@adacore.com>
* libgnat/g-socket.adb (Is_IPv6_Address): Check that no less
then 2 colons in IPv6 numeric address.
2019-08-12 Dmitriy Anisimkov <anisimko@adacore.com>
* libgnat/g-comlin.ads, libgnat/g-comlin.adb (Getopt): Add * libgnat/g-comlin.ads, libgnat/g-comlin.adb (Getopt): Add
parameter Quiet. Need to do not output error messages to parameter Quiet. Need to do not output error messages to
console. Invalid_Switch exception generation surrounded by an console. Invalid_Switch exception generation surrounded by an
......
...@@ -1797,7 +1797,7 @@ package body GNAT.Sockets is ...@@ -1797,7 +1797,7 @@ package body GNAT.Sockets is
end if; end if;
end loop; end loop;
return Colons <= 8; return Colons in 2 .. 8;
end Is_IPv6_Address; end Is_IPv6_Address;
--------------------- ---------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment