Deleted Added
full compact
bootp_subr.c (122261) bootp_subr.c (122698)
1/*
2 * Copyright (c) 1995 Gordon Ross, Adam Glass
3 * Copyright (c) 1992 Regents of the University of California.
4 * All rights reserved.
5 *
6 * This software was developed by the Computer Systems Engineering group
7 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
8 * contributed to Berkeley.

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

36 * SUCH DAMAGE.
37 *
38 * based on:
39 * nfs/krpc_subr.c
40 * $NetBSD: krpc_subr.c,v 1.10 1995/08/08 20:43:43 gwr Exp $
41 */
42
43#include <sys/cdefs.h>
1/*
2 * Copyright (c) 1995 Gordon Ross, Adam Glass
3 * Copyright (c) 1992 Regents of the University of California.
4 * All rights reserved.
5 *
6 * This software was developed by the Computer Systems Engineering group
7 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
8 * contributed to Berkeley.

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

36 * SUCH DAMAGE.
37 *
38 * based on:
39 * nfs/krpc_subr.c
40 * $NetBSD: krpc_subr.c,v 1.10 1995/08/08 20:43:43 gwr Exp $
41 */
42
43#include <sys/cdefs.h>
44__FBSDID("$FreeBSD: head/sys/nfsclient/bootp_subr.c 122261 2003-11-07 22:57:09Z sam $");
44__FBSDID("$FreeBSD: head/sys/nfsclient/bootp_subr.c 122698 2003-11-14 20:54:10Z alfred $");
45
46#include "opt_bootp.h"
47
48#include <sys/param.h>
49#include <sys/systm.h>
50#include <sys/kernel.h>
51#include <sys/sockio.h>
52#include <sys/malloc.h>

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

60
61#include <net/if.h>
62#include <net/route.h>
63
64#include <netinet/in.h>
65#include <net/if_types.h>
66#include <net/if_dl.h>
67
45
46#include "opt_bootp.h"
47
48#include <sys/param.h>
49#include <sys/systm.h>
50#include <sys/kernel.h>
51#include <sys/sockio.h>
52#include <sys/malloc.h>

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

60
61#include <net/if.h>
62#include <net/route.h>
63
64#include <netinet/in.h>
65#include <net/if_types.h>
66#include <net/if_dl.h>
67
68#include <rpc/rpcclnt.h>
69
68#include <nfs/rpcv2.h>
69#include <nfs/nfsproto.h>
70#include <nfsclient/nfs.h>
71#include <nfsclient/nfsdiskless.h>
72#include <nfsclient/krpc.h>
73#include <nfs/xdr_subs.h>
74
75

--- 1793 unchanged lines hidden ---
70#include <nfs/rpcv2.h>
71#include <nfs/nfsproto.h>
72#include <nfsclient/nfs.h>
73#include <nfsclient/nfsdiskless.h>
74#include <nfsclient/krpc.h>
75#include <nfs/xdr_subs.h>
76
77

--- 1793 unchanged lines hidden ---