Deleted Added
full compact
krpc_subr.c (122261) krpc_subr.c (122698)
1/* $NetBSD: krpc_subr.c,v 1.12.4.1 1996/06/07 00:52:26 cgd Exp $ */
2
3/*
4 * Copyright (c) 1995 Gordon Ross, Adam Glass
5 * Copyright (c) 1992 Regents of the University of California.
6 * All rights reserved.
7 *
8 * This software was developed by the Computer Systems Engineering group

--- 29 unchanged lines hidden (view full) ---

38 * SUCH DAMAGE.
39 *
40 * partially based on:
41 * libnetboot/rpc.c
42 * @(#) Header: rpc.c,v 1.12 93/09/28 08:31:56 leres Exp (LBL)
43 */
44
45#include <sys/cdefs.h>
1/* $NetBSD: krpc_subr.c,v 1.12.4.1 1996/06/07 00:52:26 cgd Exp $ */
2
3/*
4 * Copyright (c) 1995 Gordon Ross, Adam Glass
5 * Copyright (c) 1992 Regents of the University of California.
6 * All rights reserved.
7 *
8 * This software was developed by the Computer Systems Engineering group

--- 29 unchanged lines hidden (view full) ---

38 * SUCH DAMAGE.
39 *
40 * partially based on:
41 * libnetboot/rpc.c
42 * @(#) Header: rpc.c,v 1.12 93/09/28 08:31:56 leres Exp (LBL)
43 */
44
45#include <sys/cdefs.h>
46__FBSDID("$FreeBSD: head/sys/nfsclient/krpc_subr.c 122261 2003-11-07 22:57:09Z sam $");
46__FBSDID("$FreeBSD: head/sys/nfsclient/krpc_subr.c 122698 2003-11-14 20:54:10Z alfred $");
47
48#include <sys/param.h>
49#include <sys/systm.h>
50#include <sys/malloc.h>
51#include <sys/mbuf.h>
52#include <sys/proc.h>
53#include <sys/socket.h>
54#include <sys/socketvar.h>
55#include <sys/uio.h>
56
57#include <net/if.h>
58#include <netinet/in.h>
59
47
48#include <sys/param.h>
49#include <sys/systm.h>
50#include <sys/malloc.h>
51#include <sys/mbuf.h>
52#include <sys/proc.h>
53#include <sys/socket.h>
54#include <sys/socketvar.h>
55#include <sys/uio.h>
56
57#include <net/if.h>
58#include <netinet/in.h>
59
60#include <rpc/rpcclnt.h>
61
60#include <nfs/rpcv2.h>
61#include <nfsclient/krpc.h>
62#include <nfs/xdr_subs.h>
63
64/*
65 * Kernel support for Sun RPC
66 *
67 * Used currently for bootstrapping in nfs diskless configurations.

--- 417 unchanged lines hidden ---
62#include <nfs/rpcv2.h>
63#include <nfsclient/krpc.h>
64#include <nfs/xdr_subs.h>
65
66/*
67 * Kernel support for Sun RPC
68 *
69 * Used currently for bootstrapping in nfs diskless configurations.

--- 417 unchanged lines hidden ---