You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We're using the punycode branch to parse URIs and recently stumbled upon an issue where IP addresses with multiple 0s will drop some of them during parsing.
For instance, given the IP address 192.168.108.100, if you either set_host or set_host_address and then re-print the object, it will come out as 192.168.18.10.
We're using the punycode branch to parse URIs and recently stumbled upon an issue where IP addresses with multiple 0s will drop some of them during parsing.
For instance, given the IP address 192.168.108.100, if you either
set_host
orset_host_address
and then re-print the object, it will come out as 192.168.18.10.Example:
Output:
URL is: //192.168.18.10
Interestingly, even using an ipv4 object directly doesn't work:
Output:
Boost url (by IP) is: //192.168.18.10
I see that the punycode branch hasn't been updated in quite some time, is it possible that this is already known and has been fixed in
develop
?The text was updated successfully, but these errors were encountered: