NetBSD/sys/nfs/krpc.h

43 lines
1.0 KiB
C

/* $NetBSD: krpc.h,v 1.9 2009/03/14 14:46:11 dsl Exp $ */
#include <sys/cdefs.h>
#ifdef _KERNEL
int krpc_call(struct sockaddr_in *sin,
u_int prog, u_int vers, u_int func,
struct mbuf **data, struct mbuf **from, struct lwp *l);
int krpc_portmap(struct sockaddr_in *sin,
u_int prog, u_int vers, u_int proto, u_int16_t *portp,
struct lwp *l);
struct mbuf *xdr_string_encode(char *str, int len);
struct mbuf *xdr_string_decode(struct mbuf *m, char *str, int *len_p);
struct mbuf *xdr_inaddr_encode(struct in_addr *ia);
struct mbuf *xdr_inaddr_decode(struct mbuf *m, struct in_addr *ia);
#endif /* _KERNEL */
/*
* 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