summaryrefslogtreecommitdiff
path: root/test/inet/getnetent.c
blob: 1f55e4388dcc64314f4ccca3dec7478f02ccbb74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
#include <netdb.h>
int main(void)
{
	struct netent *net;
	setnetent(0);
	while ((net = getnetent())) {
		while (net->n_net && !((net->n_net >> 24) & 0xff)) {
			net->n_net <<= 8;
		}
		printf("%u.%u.%u.%u\n",
			   (net->n_net >> 24) & 0xff, (net->n_net >> 16) & 0xff,
			   (net->n_net >> 8) & 0xff, net->n_net & 0xff);
	}
	endnetent();
	return 0;
}