Deleted Added
full compact
fddi.h (55205) fddi.h (92725)
1/*
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1995 Matt Thomas (thomas@lkg.dec.com)
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * @(#)if_fddi.h 8.1 (Berkeley) 6/10/93
1/*
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1995 Matt Thomas (thomas@lkg.dec.com)
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * @(#)if_fddi.h 8.1 (Berkeley) 6/10/93
36 * $FreeBSD: head/sys/net/fddi.h 55205 1999-12-29 04:46:21Z peter $
36 * $FreeBSD: head/sys/net/fddi.h 92725 2002-03-19 21:54:18Z alfred $
37 */
38
39#ifndef _NETINET_IF_FDDI_H_
40#define _NETINET_IF_FDDI_H_
41
42/*
43 * Structure of an 100Mb/s FDDI header.
44 */

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

72#if defined(_KERNEL)
73#define fddibroadcastaddr etherbroadcastaddr
74#define fddi_ipmulticast_min ether_ipmulticast_min
75#define fddi_ipmulticast_max ether_ipmulticast_max
76#define fddi_addmulti ether_addmulti
77#define fddi_delmulti ether_delmulti
78#define fddi_sprintf ether_sprintf
79
37 */
38
39#ifndef _NETINET_IF_FDDI_H_
40#define _NETINET_IF_FDDI_H_
41
42/*
43 * Structure of an 100Mb/s FDDI header.
44 */

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

72#if defined(_KERNEL)
73#define fddibroadcastaddr etherbroadcastaddr
74#define fddi_ipmulticast_min ether_ipmulticast_min
75#define fddi_ipmulticast_max ether_ipmulticast_max
76#define fddi_addmulti ether_addmulti
77#define fddi_delmulti ether_delmulti
78#define fddi_sprintf ether_sprintf
79
80void fddi_ifattach __P((struct ifnet *));
81void fddi_input __P((struct ifnet *, struct fddi_header *, struct mbuf *));
82int fddi_output __P((struct ifnet *,
83 struct mbuf *, struct sockaddr *, struct rtentry *));
80void fddi_ifattach(struct ifnet *);
81void fddi_input(struct ifnet *, struct fddi_header *, struct mbuf *);
82int fddi_output(struct ifnet *,
83 struct mbuf *, struct sockaddr *, struct rtentry *);
84
85#endif
86
87#endif
84
85#endif
86
87#endif