Deleted Added
full compact
1a2
> * Copyright (c) 2004, Robert N. M. Watson
36c37
< * $FreeBSD: head/sys/netipx/ipx_pcb.h 139443 2004-12-30 17:21:07Z rwatson $
---
> * $FreeBSD: head/sys/netipx/ipx_pcb.h 139444 2004-12-30 17:49:40Z rwatson $
46,48c47
< struct ipxpcb *ipxp_next; /* doubly linked list */
< struct ipxpcb *ipxp_prev;
< struct ipxpcb *ipxp_head;
---
> LIST_ENTRY(ipxpcb) ipxp_list;
59a59,65
> /*
> * Additional IPX pcb-related types and variables.
> */
> LIST_HEAD(ipxpcbhead, ipxpcb);
> extern struct ipxpcbhead ipxpcb_list;
> extern struct ipxpcbhead ipxrawpcb_list;
>
84c90
< int ipx_pcballoc(struct socket *so, struct ipxpcb *head,
---
> int ipx_pcballoc(struct socket *so, struct ipxpcbhead *head,