Cleanup - all unused variables deleted.
This commit is contained in:
parent
efc9e1b78b
commit
63ca37f313
5 changed files with 1 additions and 19 deletions
|
@ -484,7 +484,6 @@ ospf_iface_notify(struct proto *p, unsigned flags, struct iface *iface)
|
||||||
struct ospf_area_config *ac;
|
struct ospf_area_config *ac;
|
||||||
struct ospf_iface_patt *ip = NULL;
|
struct ospf_iface_patt *ip = NULL;
|
||||||
struct ospf_iface *ifa;
|
struct ospf_iface *ifa;
|
||||||
struct ospf_area *oa;
|
|
||||||
|
|
||||||
DBG("%s: If notify called\n", p->name);
|
DBG("%s: If notify called\n", p->name);
|
||||||
if (iface->flags & IF_IGNORE)
|
if (iface->flags & IF_IGNORE)
|
||||||
|
|
|
@ -194,7 +194,6 @@ ospf_dump(struct proto *p)
|
||||||
struct ospf_iface *ifa;
|
struct ospf_iface *ifa;
|
||||||
struct ospf_neighbor *n;
|
struct ospf_neighbor *n;
|
||||||
struct proto_ospf *po = (struct proto_ospf *) p;
|
struct proto_ospf *po = (struct proto_ospf *) p;
|
||||||
struct ospf_area *oa;
|
|
||||||
|
|
||||||
OSPF_TRACE(D_EVENTS, "Area number: %d", po->areano);
|
OSPF_TRACE(D_EVENTS, "Area number: %d", po->areano);
|
||||||
|
|
||||||
|
@ -574,17 +573,10 @@ ospf_reconfigure(struct proto *p, struct proto_config *c)
|
||||||
struct ospf_iface *ifa;
|
struct ospf_iface *ifa;
|
||||||
struct nbma_node *nb1, *nb2, *nbnx;
|
struct nbma_node *nb1, *nb2, *nbnx;
|
||||||
struct ospf_area *oa = NULL;
|
struct ospf_area *oa = NULL;
|
||||||
struct area_net *anet, *antmp;
|
|
||||||
int found, olddead, newdead;
|
int found, olddead, newdead;
|
||||||
struct net_fib *nf;
|
|
||||||
struct area_net_config *anc;
|
struct area_net_config *anc;
|
||||||
struct area_net *an;
|
struct area_net *an;
|
||||||
|
|
||||||
//return !memcmp(((byte *) old) + sizeof(struct proto_config),
|
|
||||||
// ((byte *) new) + sizeof(struct proto_config),
|
|
||||||
// sizeof(struct ospf_config) - sizeof(struct proto_config));
|
|
||||||
|
|
||||||
|
|
||||||
po->rfc1583 = new->rfc1583;
|
po->rfc1583 = new->rfc1583;
|
||||||
schedule_rtcalc(po);
|
schedule_rtcalc(po);
|
||||||
|
|
||||||
|
|
|
@ -38,8 +38,6 @@ ospf_pkt_maxsize(struct ospf_iface *ifa)
|
||||||
void
|
void
|
||||||
ospf_pkt_finalize(struct ospf_iface *ifa, struct ospf_packet *pkt)
|
ospf_pkt_finalize(struct ospf_iface *ifa, struct ospf_packet *pkt)
|
||||||
{
|
{
|
||||||
struct proto_ospf *po = ifa->oa->po;
|
|
||||||
struct proto *p = &po->proto;
|
|
||||||
struct password_item *passwd = password_find (ifa->passwords);
|
struct password_item *passwd = password_find (ifa->passwords);
|
||||||
void *tail;
|
void *tail;
|
||||||
struct MD5Context ctxt;
|
struct MD5Context ctxt;
|
||||||
|
@ -94,7 +92,6 @@ ospf_pkt_finalize(struct ospf_iface *ifa, struct ospf_packet *pkt)
|
||||||
static int
|
static int
|
||||||
ospf_pkt_checkauth(struct ospf_neighbor *n, struct ospf_iface *ifa, struct ospf_packet *pkt, int size)
|
ospf_pkt_checkauth(struct ospf_neighbor *n, struct ospf_iface *ifa, struct ospf_packet *pkt, int size)
|
||||||
{
|
{
|
||||||
int i;
|
|
||||||
struct proto_ospf *po = ifa->oa->po;
|
struct proto_ospf *po = ifa->oa->po;
|
||||||
struct proto *p = &po->proto;
|
struct proto *p = &po->proto;
|
||||||
struct password_item *pass = NULL, *ptmp;
|
struct password_item *pass = NULL, *ptmp;
|
||||||
|
|
|
@ -472,7 +472,7 @@ ospf_rt_sum(struct ospf_area *oa)
|
||||||
ip_addr *mask, ip, abrip; /* abrIP is actually ID */
|
ip_addr *mask, ip, abrip; /* abrIP is actually ID */
|
||||||
struct area_net *anet;
|
struct area_net *anet;
|
||||||
orta nf;
|
orta nf;
|
||||||
ort *re, *abr;
|
ort *abr;
|
||||||
int mlen = -1, type = -1;
|
int mlen = -1, type = -1;
|
||||||
union ospf_lsa_sum_tm *tm;
|
union ospf_lsa_sum_tm *tm;
|
||||||
|
|
||||||
|
@ -554,7 +554,6 @@ ospf_rt_spf(struct proto_ospf *po)
|
||||||
{
|
{
|
||||||
struct proto *p = &po->proto;
|
struct proto *p = &po->proto;
|
||||||
struct ospf_area *oa;
|
struct ospf_area *oa;
|
||||||
int i;
|
|
||||||
ort *ri;
|
ort *ri;
|
||||||
struct area_net *anet;
|
struct area_net *anet;
|
||||||
|
|
||||||
|
@ -642,7 +641,6 @@ ospf_ext_spf(struct proto_ospf *po)
|
||||||
struct ospf_iface *nhi = NULL;
|
struct ospf_iface *nhi = NULL;
|
||||||
int met1, met2;
|
int met1, met2;
|
||||||
neighbor *nn;
|
neighbor *nn;
|
||||||
struct ospf_lsa_rt *rt;
|
|
||||||
struct ospf_area *atmp;
|
struct ospf_area *atmp;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,6 @@ static void *
|
||||||
originate_rt_lsa_body(struct ospf_area *oa, u16 * length)
|
originate_rt_lsa_body(struct ospf_area *oa, u16 * length)
|
||||||
{
|
{
|
||||||
struct proto_ospf *po = oa->po;
|
struct proto_ospf *po = oa->po;
|
||||||
struct proto *p = &po->proto;
|
|
||||||
struct ospf_iface *ifa;
|
struct ospf_iface *ifa;
|
||||||
int j = 0, k = 0;
|
int j = 0, k = 0;
|
||||||
u16 i = 0;
|
u16 i = 0;
|
||||||
|
@ -403,7 +402,6 @@ flush_sum_lsa(struct ospf_area *oa, struct fib_node *fn, int type)
|
||||||
struct ospf_lsa_header lsa;
|
struct ospf_lsa_header lsa;
|
||||||
int max, i;
|
int max, i;
|
||||||
struct ospf_lsa_sum *sum = NULL;
|
struct ospf_lsa_sum *sum = NULL;
|
||||||
union ospf_lsa_sum_tm *tm;
|
|
||||||
|
|
||||||
lsa.rt = rtid;
|
lsa.rt = rtid;
|
||||||
lsa.type = LSA_T_SUM_NET;
|
lsa.type = LSA_T_SUM_NET;
|
||||||
|
@ -511,9 +509,7 @@ originate_sum_lsa(struct ospf_area *oa, struct fib_node *fn, int type, int metri
|
||||||
void
|
void
|
||||||
check_sum_lsa(struct proto_ospf *po, ort *nf, int dest)
|
check_sum_lsa(struct proto_ospf *po, ort *nf, int dest)
|
||||||
{
|
{
|
||||||
struct proto *p = &po->proto;
|
|
||||||
struct ospf_area *oa;
|
struct ospf_area *oa;
|
||||||
struct area_net *anet;
|
|
||||||
int flush, mlen;
|
int flush, mlen;
|
||||||
ip_addr ip;
|
ip_addr ip;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue