ospfd: remove t_external_lsa

It's unused...

Signed-off-by: David Lamparter <equinox@diac24.net>
This commit is contained in:
David Lamparter 2019-07-29 12:26:23 +02:00
parent b7655d8476
commit e8a2cc5323
3 changed files with 0 additions and 4 deletions

View File

@ -2031,8 +2031,6 @@ int ospf_external_lsa_originate_timer(struct thread *thread)
struct listnode *node;
struct ospf_external *ext;
ospf->t_external_lsa = NULL;
ext_list = ospf->external[type];
if (!ext_list)
return 0;

View File

@ -702,7 +702,6 @@ static void ospf_finish_final(struct ospf *ospf)
/* Cancel all timers. */
OSPF_TIMER_OFF(ospf->t_read);
OSPF_TIMER_OFF(ospf->t_write);
OSPF_TIMER_OFF(ospf->t_external_lsa);
OSPF_TIMER_OFF(ospf->t_spf_calc);
OSPF_TIMER_OFF(ospf->t_ase_calc);
OSPF_TIMER_OFF(ospf->t_maxage);

View File

@ -233,7 +233,6 @@ struct ospf {
struct thread *t_distribute_update; /* Distirbute list update timer. */
struct thread *t_spf_calc; /* SPF calculation timer. */
struct thread *t_ase_calc; /* ASE calculation timer. */
struct thread *t_external_lsa; /* AS-external-LSA origin timer. */
struct thread
*t_opaque_lsa_self; /* Type-11 Opaque-LSAs origin event. */
struct thread *t_sr_update; /* Segment Routing update timer */