summaryrefslogtreecommitdiff
path: root/test/inet/if_nameindex.c
blob: 126c5bab4dfc843b8c69b56d951f0f34cd082191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/* if_nameindex.c: test the if_nameindex() function
 *
 * Copyright (C) 2006 Erik Andersen <andersen@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];

static 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);
}

static void test_if_indextoname(void)
{
	if (if_indextoname(1, ifname) == NULL) {
		perror("if_nameindex()");
		exit(1);
	}

	printf("if_indextoname(1) = %s\n", ifname);
}

static 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(void)
{
	test_if_nameindex();
	test_if_indextoname();
	test_if_nametoindex();
	return 0;
}