svn commit: trunk/uClibc/test: inet

vapier at uclibc.org vapier at uclibc.org
Fri Jan 6 05:56:28 UTC 2006


Author: vapier
Date: 2006-01-05 21:56:26 -0800 (Thu, 05 Jan 2006)
New Revision: 13129

Log:
simple test for the if_nameindex() related functions

Added:
   trunk/uClibc/test/inet/
   trunk/uClibc/test/inet/if_nameindex.c


Changeset:
Added: trunk/uClibc/test/inet/if_nameindex.c
===================================================================
--- trunk/uClibc/test/inet/if_nameindex.c	2006-01-06 04:57:40 UTC (rev 13128)
+++ trunk/uClibc/test/inet/if_nameindex.c	2006-01-06 05:56:26 UTC (rev 13129)
@@ -0,0 +1,61 @@
+/* if_nameindex.c: test the if_nameindex() function
+ *
+ * Copyright (C) 2006 Erik Andersen <andersen at uclibc.org>
+ *
+ * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <net/if.h>
+
+static char ifname[IF_NAMESIZE];
+
+void test_if_nameindex(void)
+{
+	size_t i;
+	struct if_nameindex *ret;
+
+	ret = if_nameindex();
+
+	if (ret == NULL) {
+		perror("if_nameindex()");
+		exit(1);
+	}
+
+	printf("--- if_nameindex()\n");
+	for (i=0; ret[i].if_name; ++i)
+		printf("%i: %s\n", ret[i].if_index, ret[i].if_name);
+
+	if_freenameindex(ret);
+}
+
+void test_if_indextoname(void)
+{
+	if (if_indextoname(1, ifname) == NULL) {
+		perror("if_nameindex()");
+		exit(1);
+	}
+
+	printf("if_indextoname(1) = %s\n", ifname);
+}
+
+void test_if_nametoindex(void)
+{
+	int ifindex = if_nametoindex(ifname);
+
+	if (ifindex == 0) {
+		perror("if_nametoindex()");
+		exit(1);
+	}
+
+	printf("if_nametoindex(%s) = %i\n", ifname, ifindex);
+}
+
+int main()
+{
+	test_if_nameindex();
+	test_if_indextoname();
+	test_if_nametoindex();
+	return 0;
+}




More information about the uClibc-cvs mailing list