diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2016-07-28 17:23:32 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetwroks.com> | 2016-07-28 17:08:49 +0200 |
commit | 47a928fb85cbd2656c6f48824173301f9252e478 (patch) | |
tree | 84effe9d124cd59b041ec4f0d3057358efe26882 /isisd/isis_circuit.h | |
parent | isisd: API: area (L1), domain (L2) passwords (diff) | |
download | frr-47a928fb85cbd2656c6f48824173301f9252e478.tar.xz frr-47a928fb85cbd2656c6f48824173301f9252e478.zip |
isisd: drop unused per-type metric values
Expense, Error and Delay metrics never quite made it into the real
world. Either way isisd does nothing useful with them, so let's drop
them from the code. If someone wants to implement them, this patch can
still be reverted.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'isisd/isis_circuit.h')
-rw-r--r-- | isisd/isis_circuit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isisd/isis_circuit.h b/isisd/isis_circuit.h index 45bac0937..9d6e426d4 100644 --- a/isisd/isis_circuit.h +++ b/isisd/isis_circuit.h @@ -117,7 +117,7 @@ struct isis_circuit u_int16_t hello_multiplier[2]; /* l1HelloMultiplier */ u_int16_t csnp_interval[2]; /* level-1 csnp-interval in seconds */ u_int16_t psnp_interval[2]; /* level-1 psnp-interval in seconds */ - struct metric metrics[2]; /* l1XxxMetric */ + u_int8_t metric[2]; u_int32_t te_metric[2]; int ip_router; /* Route IP ? */ int is_passive; /* Is Passive ? */ |