natInetAddress.cc (java::net::InetAddress::aton): Wrap use of inet_pton in HAVE_INET6.
* java/net/natInetAddress.cc (java::net::InetAddress::aton): Wrap use of inet_pton in HAVE_INET6. From-SVN: r41547
This commit is contained in:
parent
ddbb6d43a3
commit
9e65a913b6
2 changed files with 6 additions and 1 deletions
|
@ -118,7 +118,7 @@ java::net::InetAddress::aton (jstring host)
|
|||
blen = 4;
|
||||
}
|
||||
#endif
|
||||
#ifdef HAVE_INET_PTON
|
||||
#if defined (HAVE_INET_PTON) && defined (HAVE_INET6)
|
||||
char inet6_addr[16];
|
||||
if (len == 0 && inet_pton (AF_INET6, hostname, inet6_addr) > 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue