Add PCICAP_{ID,NEXTPTR} to avoid using magic number
[dragonfly.git] / usr.sbin / portmap / pmap_dump / pmap_dump.c
blob4f6475b8ce4450f7d2b20fe534b7f91ac57bdb53
1 /*
2 * pmap_dump - dump portmapper table in format readable by pmap_set
4 * Author: Wietse Venema (wietse@wzv.win.tue.nl), dept. of Mathematics and
5 * Computing Science, Eindhoven University of Technology, The Netherlands.
6 */
8 /*
9 * @(#) pmap_dump.c 1.1 92/06/11 22:53:15
10 * $FreeBSD: src/usr.sbin/portmap/pmap_dump/pmap_dump.c,v 1.6 2000/01/15 23:08:30 brian Exp $
11 * $DragonFly: src/usr.sbin/portmap/pmap_dump/pmap_dump.c,v 1.4 2004/03/30 02:59:00 cpressey Exp $
14 #include <sys/types.h>
15 #ifdef SYSV40
16 #include <netinet/in.h>
17 #include <rpc/rpcent.h>
18 #else
19 #include <netdb.h>
20 #endif
21 #include <rpc/rpc.h>
22 #include <rpc/pmap_clnt.h>
23 #include <rpc/pmap_prot.h>
25 #include <stdio.h>
27 static const char *protoname(u_long);
29 int
30 main(int argc, char **argv)
32 struct sockaddr_in addr;
33 struct pmaplist *list;
34 struct rpcent *rpc;
36 get_myaddress(&addr);
38 for (list = pmap_getmaps(&addr); list; list = list->pml_next) {
39 rpc = getrpcbynumber((int) list->pml_map.pm_prog);
40 printf("%10lu %4lu %5s %6lu %s\n",
41 list->pml_map.pm_prog,
42 list->pml_map.pm_vers,
43 protoname(list->pml_map.pm_prot),
44 list->pml_map.pm_port,
45 rpc ? rpc->r_name : "");
47 #undef perror
48 return (fclose(stdout) ? (perror(argv[0]), 1) : 0);
51 static const char *
52 protoname(u_long proto)
54 static char buf[BUFSIZ];
56 switch (proto) {
57 case IPPROTO_UDP:
58 return ("udp");
59 case IPPROTO_TCP:
60 return ("tcp");
61 default:
62 sprintf(buf, "%lu", proto);
63 return (buf);