Move the definition of ipxpcb_lport_cache from ipx_input.c to ipx_pcb.c,

the only source file where it is actually used.
This commit is contained in:
Robert Watson 2005-01-01 22:04:03 +00:00
parent 0d00328d33
commit 86c788d323
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=139551
2 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,6 @@ struct sockaddr_ipx ipx_netmask, ipx_hostmask;
/*
* IPX protocol control block (pcb) lists.
*/
u_short ipxpcb_lport_cache;
struct ipxpcbhead ipxpcb_list;
struct ipxpcbhead ipxrawpcb_list;

View File

@ -53,6 +53,7 @@ __FBSDID("$FreeBSD$");
#include <netipx/ipx_var.h>
static struct ipx_addr zeroipx_addr;
static u_short ipxpcb_lport_cache;
int
ipx_pcballoc(so, head, td)