From 850fda2518d6e91ca8e126ff91adad62fd507276 Mon Sep 17 00:00:00 2001 From: Ondrej Filip Date: Tue, 9 May 2000 18:35:57 +0000 Subject: Backup seen is not called so often. --- proto/ospf/hello.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'proto/ospf') diff --git a/proto/ospf/hello.c b/proto/ospf/hello.c index 4535c5e..b6e34e2 100644 --- a/proto/ospf/hello.c +++ b/proto/ospf/hello.c @@ -150,10 +150,12 @@ ospf_hello_rx(struct ospf_hello_packet *ps, struct proto *p, if(n->priority!=oldpriority) ospf_int_sm(ifa, ISM_NEICH); /* Router is declaring itself ad DR and there is no BDR */ - if((n->rid==n->dr) && (n->bdr==0)) ospf_int_sm(ifa, ISM_BACKS); + if((n->rid==n->dr) && (n->bdr==0) && (n->state!=NEIGHBOR_FULL)) + ospf_int_sm(ifa, ISM_BACKS); /* Neighbor is declaring itself as BDR */ - if(n->rid==n->bdr) ospf_int_sm(ifa, ISM_BACKS); + if((n->rid==n->bdr) && (n->state!=NEIGHBOR_FULL)) + ospf_int_sm(ifa, ISM_BACKS); /* Neighbor is newly declaring itself as DR or BDR */ if(((n->rid==n->dr) && (n->dr!=olddr)) || ((n->rid==n->bdr) && -- cgit v1.2.3