Deleted Added
full compact
ipx_outputfl.c (27125) ipx_outputfl.c (33181)
1/*
2 * Copyright (c) 1995, Mike Mitchell
3 * Copyright (c) 1984, 1985, 1986, 1987, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)ipx_outputfl.c
35 *
1/*
2 * Copyright (c) 1995, Mike Mitchell
3 * Copyright (c) 1984, 1985, 1986, 1987, 1993
4 * The Regents of the University of California. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

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

28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
33 *
34 * @(#)ipx_outputfl.c
35 *
36 * $Id: ipx_outputfl.c,v 1.8 1997/06/26 19:35:51 jhay Exp $
36 * $Id: ipx_outputfl.c,v 1.9 1997/07/01 00:22:49 bde Exp $
37 */
38
39#include <sys/param.h>
40#include <sys/systm.h>
41#include <sys/mbuf.h>
42#include <sys/socket.h>
43
44#include <net/if.h>
45#include <net/route.h>
46
47#include <netipx/ipx.h>
48#include <netipx/ipx_if.h>
49#include <netipx/ipx_var.h>
50
51#ifdef vax
52#include <machine/mtpr.h>
53#endif
54
37 */
38
39#include <sys/param.h>
40#include <sys/systm.h>
41#include <sys/mbuf.h>
42#include <sys/socket.h>
43
44#include <net/if.h>
45#include <net/route.h>
46
47#include <netipx/ipx.h>
48#include <netipx/ipx_if.h>
49#include <netipx/ipx_var.h>
50
51#ifdef vax
52#include <machine/mtpr.h>
53#endif
54
55int ipx_copy_output = 0;
55static int ipx_copy_output = 0;
56
57int
58ipx_outputfl(m0, ro, flags)
59 struct mbuf *m0;
60 struct route *ro;
61 int flags;
62{
63 register struct ipx *ipx = mtod(m0, struct ipx *);

--- 203 unchanged lines hidden ---
56
57int
58ipx_outputfl(m0, ro, flags)
59 struct mbuf *m0;
60 struct route *ro;
61 int flags;
62{
63 register struct ipx *ipx = mtod(m0, struct ipx *);

--- 203 unchanged lines hidden ---