aboutsummaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-04-01 06:53:11 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-04-01 06:53:11 +0000
commit1fc7ff878e2dd744de53ae369c3aa13e77ae9a83 (patch)
tree2069ffc5555e90b2db8dae5de438521ad3745677 /acinclude.m4
parentb643d148b136b8fd912c02e138bd02785f5307dc (diff)
Applied Joe Halpin's bugfixes to the NI_WITHSCOPEID test program.
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m417
1 files changed, 9 insertions, 8 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 5c486cf9b..8c5d8cc3f 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -282,25 +282,27 @@ AC_DEFUN([CURL_CHECK_NI_WITHSCOPEID],[
AC_CACHE_CHECK(for working NI_WITHSCOPEID, ac_cv_working_ni_withscopeid,[
AC_RUN_IFELSE([[
+#include <stdio.h>
+#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
int main()
{
#ifdef NI_WITHSCOPEID
struct sockaddr_storage ss;
- int sslen;
+ int sslen = sizeof(ss);
int rc;
char hbuf[NI_MAXHOST];
int fd = socket(AF_INET6, SOCK_STREAM, 0);
if(fd < 0) {
- printf("couldn't create AF_INET6 socket\n");
- return 4; /* couldn't create socket of either kind */
+ perror("socket()");
+ return 1; /* couldn't create socket of either kind */
}
rc = getsockname(fd, (struct sockaddr *)&ss, &sslen);
if(rc) {
- printf("getsockname() failed\n");
- return 1; /* getsockname() failed unexpectedly */
+ perror("getsockname()");
+ return 2;
}
rc = getnameinfo((struct sockaddr *)&ss, sslen, hbuf, sizeof(hbuf),
@@ -309,13 +311,12 @@ int main()
if(rc) {
printf("rc = %s\n", gai_strerror(rc));
- return 2; /* getnameinfo() failed, we take this as an indication to
- avoid NI_WITHSCOPEID */
+ return 3;
}
return 0; /* everything works fine, use NI_WITHSCOPEID! */
#else
- return 3; /* we don't seem to have the definition, don't use it */
+ return 4; /* we don't seem to have the definition, don't use it */
#endif
}
]],