diff options
author | hasso <hasso> | 2005-02-23 11:29:02 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-02-23 11:29:02 +0000 |
commit | f8d25fb4be9a72622db6d109601e320a1a2ffc74 (patch) | |
tree | d393f8a15c364ccb742464fcc70f71b7ef38c140 /ospfd/ospf_lsa.h | |
parent | fd76b7c23240019f2c782c5b36dd6cf5d253f47c (diff) | |
download | quagga-f8d25fb4be9a72622db6d109601e320a1a2ffc74.tar.bz2 quagga-f8d25fb4be9a72622db6d109601e320a1a2ffc74.tar.xz |
* ospf_lsa.h: New flag to the LSA structure for the SPF calculation.
* ospf_lsdb.h: Export ospf_lsdb_clean_stat() function.
* ospf_spf.h: Add link to the LSA stat structure into vertex.
* ospf_spf.c: New functions cmp() and update_stat() to manage
candidates. Remove ospf_spf_has_vertex(), ospf_vertex_lookup(),
ospf_install_candidate() and ospf_spf_register() functions not needed
any more. Update ospf_vertex_new(), ospf_spf_next() and
ospf_spf_calculate() functions to use pqueue instead of linked list.
Diffstat (limited to 'ospfd/ospf_lsa.h')
-rw-r--r-- | ospfd/ospf_lsa.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ospfd/ospf_lsa.h b/ospfd/ospf_lsa.h index 6d10e645..952ca774 100644 --- a/ospfd/ospf_lsa.h +++ b/ospfd/ospf_lsa.h @@ -90,6 +90,12 @@ struct ospf_lsa /* All of reference count, also lock to remove. */ int lock; + /* Flags for the SPF calculation. */ + int stat; + #define LSA_SPF_NOT_EXPLORED -1 + #define LSA_SPF_IN_SPFTREE -2 + /* If stat >= 0, stat is LSA position in candidates heap. */ + /* References to this LSA in neighbor retransmission lists*/ int retransmit_counter; |