Deleted Added
full compact
bpf.c (149383) bpf.c (149399)
1/* $OpenBSD: bpf.c,v 1.13 2004/05/05 14:28:58 deraadt Exp $ */
1/* $OpenBSD: bpf.c,v 1.13 2004/05/05 14:28:58 deraadt Exp $ */
2/* $FreeBSD: head/sbin/dhclient/bpf.c 149383 2005-08-23 01:35:38Z csjp $ */
3
4/* BPF socket interface code, originally contributed by Archie Cobbs. */
5
6/*
7 * Copyright (c) 1995, 1996, 1998, 1999
8 * The Internet Software Consortium. All rights reserved.
9 *
10 * Redistribution and use in source and binary forms, with or without

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

36 *
37 * This software has been written for the Internet Software Consortium
38 * by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
39 * Enterprises. To learn more about the Internet Software Consortium,
40 * see ``http://www.vix.com/isc''. To learn more about Vixie
41 * Enterprises, see ``http://www.vix.com''.
42 */
43
2
3/* BPF socket interface code, originally contributed by Archie Cobbs. */
4
5/*
6 * Copyright (c) 1995, 1996, 1998, 1999
7 * The Internet Software Consortium. All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without

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

35 *
36 * This software has been written for the Internet Software Consortium
37 * by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
38 * Enterprises. To learn more about the Internet Software Consortium,
39 * see ``http://www.vix.com/isc''. To learn more about Vixie
40 * Enterprises, see ``http://www.vix.com''.
41 */
42
43#include <sys/cdefs.h>
44__FBSDID("$FreeBSD: head/sbin/dhclient/bpf.c 149399 2005-08-23 23:59:55Z brooks $");
45
44#include "dhcpd.h"
45#include <sys/ioctl.h>
46#include <sys/uio.h>
47
48#include <net/bpf.h>
49#include <netinet/in_systm.h>
50#include <netinet/ip.h>
51#include <netinet/udp.h>

--- 334 unchanged lines hidden ---
46#include "dhcpd.h"
47#include <sys/ioctl.h>
48#include <sys/uio.h>
49
50#include <net/bpf.h>
51#include <netinet/in_systm.h>
52#include <netinet/ip.h>
53#include <netinet/udp.h>

--- 334 unchanged lines hidden ---