diff options
author | eivind <eivind@FreeBSD.org> | 1999-01-12 12:37:18 +0000 |
---|---|---|
committer | eivind <eivind@FreeBSD.org> | 1999-01-12 12:37:18 +0000 |
commit | 6788eff0e6370de72568309d3a8b1891341b0991 (patch) | |
tree | d5d1f0a9b4e3782503825dfe471746d96a827bdd /sys/netipx | |
parent | cf51804cbf57530d608f0b07f3fbd34817c9f578 (diff) | |
download | FreeBSD-src-6788eff0e6370de72568309d3a8b1891341b0991.zip FreeBSD-src-6788eff0e6370de72568309d3a8b1891341b0991.tar.gz |
Remove functions that are no longer in use.
Diffstat (limited to 'sys/netipx')
-rw-r--r-- | sys/netipx/spx_usrreq.c | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/sys/netipx/spx_usrreq.c b/sys/netipx/spx_usrreq.c index 7919749..13f3360 100644 --- a/sys/netipx/spx_usrreq.c +++ b/sys/netipx/spx_usrreq.c @@ -33,7 +33,7 @@ * * @(#)spx_usrreq.h * - * $Id: spx_usrreq.c,v 1.20 1998/08/23 03:07:15 wollman Exp $ + * $Id: spx_usrreq.c,v 1.21 1998/12/07 21:58:42 archie Exp $ */ #include <sys/param.h> @@ -75,12 +75,10 @@ static struct spx_istat spx_istat; static int spx_backoff[SPX_MAXRXTSHIFT+1] = { 1, 2, 4, 8, 16, 32, 64, 64, 64, 64, 64, 64, 64 }; -static void spx_abort(struct ipxpcb *ipxp); static struct spxpcb *spx_close(struct spxpcb *cb); static struct spxpcb *spx_disconnect(struct spxpcb *cb); static struct spxpcb *spx_drop(struct spxpcb *cb, int errno); static int spx_output(struct spxpcb *cb, struct mbuf *m0); -static void spx_quench(struct ipxpcb *ipxp); static int spx_reass(struct spxpcb *cb, struct spx *si); static void spx_setpersist(struct spxpcb *cb); static void spx_template(struct spxpcb *cb); @@ -656,19 +654,6 @@ spx_ctlinput(cmd, arg_as_sa, dummy) break; } } -/* - * When a source quench is received, close congestion window - * to one packet. We will gradually open it again as we proceed. - */ -static void -spx_quench(ipxp) - struct ipxpcb *ipxp; -{ - struct spxpcb *cb = ipxtospxpcb(ipxp); - - if (cb != NULL) - cb->s_cwnd = CUNIT; -} #ifdef notdef int @@ -1751,14 +1736,6 @@ spx_drop(cb, errno) return (spx_close(cb)); } -static void -spx_abort(ipxp) - struct ipxpcb *ipxp; -{ - - spx_close((struct spxpcb *)ipxp->ipxp_pcb); -} - /* * Fast timeout routine for processing delayed acks */ |