Deleted Added
full compact
ipx_pcb.h (92745) ipx_pcb.h (108533)
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_pcb.h
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_pcb.h
35 *
36 * $FreeBSD: head/sys/netipx/ipx_pcb.h 92745 2002-03-20 02:39:27Z alfred $
36 * $FreeBSD: head/sys/netipx/ipx_pcb.h 108533 2003-01-01 18:49:04Z schweikh $
37 */
38
39#ifndef _NETIPX_IPX_PCB_H_
40#define _NETIPX_IPX_PCB_H_
41
42/*
43 * IPX protocol interface control block.
44 */

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

69#define IPX_WILDCARD 1
70
71#define ipxp_lport ipxp_laddr.x_port
72#define ipxp_fport ipxp_faddr.x_port
73
74#define sotoipxpcb(so) ((struct ipxpcb *)((so)->so_pcb))
75
76/*
37 */
38
39#ifndef _NETIPX_IPX_PCB_H_
40#define _NETIPX_IPX_PCB_H_
41
42/*
43 * IPX protocol interface control block.
44 */

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

69#define IPX_WILDCARD 1
70
71#define ipxp_lport ipxp_laddr.x_port
72#define ipxp_fport ipxp_faddr.x_port
73
74#define sotoipxpcb(so) ((struct ipxpcb *)((so)->so_pcb))
75
76/*
77 * Nominal space allocated to a IPX socket.
77 * Nominal space allocated to an IPX socket.
78 */
79#define IPXSNDQ 16384
80#define IPXRCVQ 40960
81
82#ifdef _KERNEL
83extern struct ipxpcb ipxpcb; /* head of list */
84
85int ipx_pcballoc(struct socket *so, struct ipxpcb *head,

--- 16 unchanged lines hidden ---
78 */
79#define IPXSNDQ 16384
80#define IPXRCVQ 40960
81
82#ifdef _KERNEL
83extern struct ipxpcb ipxpcb; /* head of list */
84
85int ipx_pcballoc(struct socket *so, struct ipxpcb *head,

--- 16 unchanged lines hidden ---