diff options
author | Ondrej Filip <feela@network.cz> | 2005-02-18 19:51:42 +0100 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2005-02-18 19:51:42 +0100 |
commit | 60e04f041303fdafd0abf0dec003a9745345c68a (patch) | |
tree | 4d05e0042b8b2289e790b7750ddb22284ca8ad9b /proto/ospf/ospf.h | |
parent | 27a1e3ac35bd3f6a9b5161eafb5b8178162a37f8 (diff) | |
download | bird-60e04f041303fdafd0abf0dec003a9745345c68a.tar bird-60e04f041303fdafd0abf0dec003a9745345c68a.zip |
Minor bugfix: Summary LSA for aggregated area was always propagated with
metric = 1. Now it's metric of most distant component.
Diffstat (limited to 'proto/ospf/ospf.h')
-rw-r--r-- | proto/ospf/ospf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/proto/ospf/ospf.h b/proto/ospf/ospf.h index 352cd76..44ba10f 100644 --- a/proto/ospf/ospf.h +++ b/proto/ospf/ospf.h @@ -83,6 +83,7 @@ struct area_net struct fib_node fn; int hidden; int active; + u32 metric; }; struct ospf_area_config |