432aad0e98
to fill in the nfs_diskless structure, at the cost of some kernel bloat. The advantage is that this code works on a wider range of network adapters than netboot. Several new kernel options are documented in LINT. Obtained from: parts of the code comes from NetBSD.
31 lines
887 B
C
31 lines
887 B
C
/* $NetBSD: krpc.h,v 1.4 1995/12/19 23:07:11 cgd Exp $ */
|
|
/* $Id:$ */
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
int krpc_call __P((struct sockaddr_in *sin,
|
|
u_int prog, u_int vers, u_int func,
|
|
struct mbuf **data, struct mbuf **from, struct proc *procp));
|
|
|
|
int krpc_portmap __P((struct sockaddr_in *sin,
|
|
u_int prog, u_int vers, u_int16_t *portp,struct proc *procp));
|
|
|
|
struct mbuf *xdr_string_encode __P((char *str, int len));
|
|
struct mbuf *xdr_string_decode __P((struct mbuf *m, char *str, int *len_p));
|
|
struct mbuf *xdr_inaddr_encode __P((struct in_addr *ia));
|
|
struct mbuf *xdr_inaddr_decode __P((struct mbuf *m, struct in_addr *ia));
|
|
|
|
|
|
/*
|
|
* 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
|