Get rid of inet_aton(3).
authorflorian <florian@openbsd.org>
Mon, 19 Aug 2024 07:28:22 +0000 (07:28 +0000)
committerflorian <florian@openbsd.org>
Mon, 19 Aug 2024 07:28:22 +0000 (07:28 +0000)
commitbfef29a95afd95122dd76db07c0717d5e220ab0b
treed39785befb577ca97413597c2b56cfb1ed0b85f9
parent65eeb6edff1e14f8d1ca1cd5ef6f4013b67e5e67
Get rid of inet_aton(3).

inet_aton(3) is not a good interface to figure out if something looks
like an IP address and a reverse DNS lookup should be performed.

The modern way to do this is to chain getaddrinfo(3) with
getnameinfo(3). As a bonus this gives us reverse lookup for IPv6, too.

OK kn
usr.bin/w/w.c