Submitted by: john hay

>From jhay@mikom.csir.co.za Mon Dec  4 09:48:12 1995
Subject: Yet another IPXrouted fix

I think these should
should make IPXrouted fairly stable. These last problems only showed when
we had more than one route of the same cost to a net.

This will fix some endless loops in the clone code.

John
--
John Hay -- John.Hay@csir.co.za
This commit is contained in:
julian 1995-12-05 04:59:56 +00:00
parent 20e33b6b11
commit f7be969071
2 changed files with 5 additions and 4 deletions

View File

@ -35,7 +35,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: output.c,v 1.6 1995/10/11 18:57:22 jhay Exp $
* $Id: output.c,v 1.1 1995/10/26 21:28:20 julian Exp $
*/
#ifndef lint
@ -166,7 +166,7 @@ supply(dst, flags, ifp)
crt = rt->rt_clone;
while (crt) {
if (crt->rt_ifp == ifp)
continue;
goto next;
crt = crt->rt_clone;
}

View File

@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: sap_output.c,v 1.1 1995/10/26 21:28:24 julian Exp $
* $Id: sap_output.c,v 1.2 1995/11/13 21:01:34 julian Exp $
*/
/*
@ -157,7 +157,7 @@ sap_supply(dst, flags, ifp, ServType)
csap = sap->clone;
while (csap) {
if (csap->ifp == ifp)
continue;
goto next;
csap = csap->clone;
}
@ -172,6 +172,7 @@ sap_supply(dst, flags, ifp, ServType)
*n = sap->sap;
n->hops = htons(metric);
n++;
next:
}
if (n != sap_msg->sap) {
size = (char *)n - (char *)sap_msg;