about summary refs log tree commit diff
path: root/inet/tst-getni2.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-12-09 22:47:54 +0000
committerUlrich Drepper <drepper@redhat.com>2008-12-09 22:47:54 +0000
commited0da352260ecfd48408c52806e54267342c4d5b (patch)
treef1d48d07be5f792e466d65e45bc465c936b04972 /inet/tst-getni2.c
parentd4f0720b201778bedd41b662643d28701b079717 (diff)
downloadglibc-ed0da352260ecfd48408c52806e54267342c4d5b.tar.gz
glibc-ed0da352260ecfd48408c52806e54267342c4d5b.tar.xz
glibc-ed0da352260ecfd48408c52806e54267342c4d5b.zip
* inet/Makefile (tests): Add tst-getni2.
	* inet/tst-getni2.c: New file.
Diffstat (limited to 'inet/tst-getni2.c')
-rw-r--r--inet/tst-getni2.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/inet/tst-getni2.c b/inet/tst-getni2.c
new file mode 100644
index 0000000000..b949d888d5
--- /dev/null
+++ b/inet/tst-getni2.c
@@ -0,0 +1,41 @@
+#include <netdb.h>
+#include <stdio.h>
+#include <sys/socket.h>
+
+static int
+do_test (void)
+{
+  int retval = 0;
+
+  struct sockaddr_in6 s;
+  s.sin6_family = AF_INET6;
+  s.sin6_port = htons (80);
+  s.sin6_flowinfo = 0;
+  s.sin6_addr = (struct in6_addr) IN6ADDR_ANY_INIT;
+  s.sin6_scope_id = 0;
+  char buf[1000];
+  buf[0] = '\0';
+  int r = getnameinfo((struct sockaddr *) &s, sizeof (s), buf, sizeof (buf),
+		      NULL, 0, NI_NUMERICSERV);
+  printf("r = %d, buf = \"%s\"\n", r, buf);
+  if (r != 0)
+    {
+      puts ("failed without NI_NAMEREQD");
+      retval = 1;
+    }
+  
+  buf[0] = '\0';
+  r = getnameinfo((struct sockaddr *) &s, sizeof (s), buf, sizeof (buf),
+		  NULL, 0, NI_NUMERICSERV | NI_NAMEREQD);
+  printf("r = %d, buf = \"%s\"\n", r, buf);
+  if (r != EAI_NONAME)
+    {
+      puts ("did not fail with EAI_NONAME with NI_NAMEREQD set");
+      retval = 1;
+    }
+
+  return retval;
+}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"