Deleted Added
full compact
if.h (223735) if.h (226610)
1/*-
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)if.h 8.1 (Berkeley) 6/10/93
1/*-
2 * Copyright (c) 1982, 1986, 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)if.h 8.1 (Berkeley) 6/10/93
30 * $FreeBSD: head/sys/net/if.h 223735 2011-07-03 12:22:02Z bz $
30 * $FreeBSD: head/sys/net/if.h 226610 2011-10-21 12:58:34Z ed $
31 */
32
33#ifndef _NET_IF_H_
34#define _NET_IF_H_
35
36#include <sys/cdefs.h>
37
38#ifdef _KERNEL
39#include <sys/queue.h>
40#endif
41
42#if __BSD_VISIBLE
43/*
44 * <net/if.h> does not depend on <sys/time.h> on most other systems. This
45 * helps userland compatibility. (struct timeval ifi_lastchange)
31 */
32
33#ifndef _NET_IF_H_
34#define _NET_IF_H_
35
36#include <sys/cdefs.h>
37
38#ifdef _KERNEL
39#include <sys/queue.h>
40#endif
41
42#if __BSD_VISIBLE
43/*
44 * <net/if.h> does not depend on <sys/time.h> on most other systems. This
45 * helps userland compatibility. (struct timeval ifi_lastchange)
46 * The same holds for <sys/socket.h>. (struct sockaddr ifru_addr)
46 */
47#ifndef _KERNEL
48#include <sys/time.h>
47 */
48#ifndef _KERNEL
49#include <sys/time.h>
50#include <sys/socket.h>
49#endif
50
51struct ifnet;
52#endif
53
54/*
55 * Length of interface external name, including terminating '\0'.
56 * Note: this is the same size as a generic device's external name.

--- 421 unchanged lines hidden ---
51#endif
52
53struct ifnet;
54#endif
55
56/*
57 * Length of interface external name, including terminating '\0'.
58 * Note: this is the same size as a generic device's external name.

--- 421 unchanged lines hidden ---