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
|
/* $OpenBSD: krpc.h,v 1.6 2008/05/17 17:27:24 thib Exp $ */
/* $NetBSD: krpc.h,v 1.4 1995/12/19 23:07:11 cgd Exp $ */
#include <sys/cdefs.h>
int krpc_call(struct sockaddr_in *, u_int, u_int, u_int, struct mbuf **,
struct mbuf **, int);
int krpc_portmap(struct sockaddr_in *, u_int, u_int, u_int16_t *);
struct mbuf *xdr_string_encode(char *, int);
struct mbuf *xdr_string_decode(struct mbuf *, char *, int *);
struct mbuf *xdr_inaddr_encode(struct in_addr *);
struct mbuf *xdr_inaddr_decode(struct mbuf *, struct in_addr *);
/* RPC definitions for the portmapper. */
#define PMAPPORT 111
#define PMAPPROG 100000
#define PMAPVERS 2
#define PMAPPROC_NULL 0
#define PMAPPROC_SET 1
#define PMAPPROC_UNSET 2
#define PMAPPROC_GETPORT 3
#define PMAPPROC_DUMP 4
#define PMAPPROC_CALLIT 5
/* RPC definitions for bootparamd. */
#define BOOTPARAM_PROG 100026
#define BOOTPARAM_VERS 1
#define BOOTPARAM_WHOAMI 1
#define BOOTPARAM_GETFILE 2
|