diff options
author | Martin Mares <mj@ucw.cz> | 1999-04-12 20:01:07 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-04-12 20:01:07 +0200 |
commit | 08e2d6259a71c5e43ac0083ea6d81357678f99eb (patch) | |
tree | b8c1cfaf6196d54c506ed025a9d29697bda087b6 /nest/rt-attr.c | |
parent | 170c984a9ef1bde00711f405b03d24a2e151501c (diff) | |
download | bird-08e2d6259a71c5e43ac0083ea6d81357678f99eb.tar bird-08e2d6259a71c5e43ac0083ea6d81357678f99eb.zip |
Removed TOS support. This simplifies many things a lot.
Diffstat (limited to 'nest/rt-attr.c')
-rw-r--r-- | nest/rt-attr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nest/rt-attr.c b/nest/rt-attr.c index 2cb2bc5..2a369ce 100644 --- a/nest/rt-attr.c +++ b/nest/rt-attr.c @@ -271,7 +271,6 @@ rta_same(rta *x, rta *y) x->scope == y->scope && x->cast == y->cast && x->dest == y->dest && - x->tos == y->tos && x->flags == y->flags && ipa_equal(x->gw, y->gw) && ipa_equal(x->from, y->from) && @@ -334,9 +333,9 @@ rta_dump(rta *a) static char *rtc[] = { "", " BC", " MC", " AC" }; static char *rtd[] = { "", " DEV", " HOLE", " UNREACH", " PROHIBIT" }; - debug("p=%s uc=%d %s %s%s%s TOS=%d", + debug("p=%s uc=%d %s %s%s%s", a->proto->name, a->uc, rts[a->source], sco[a->scope], rtc[a->cast], - rtd[a->dest], a->tos); + rtd[a->dest]); if (a->flags & RTF_EXTERIOR) debug(" EXT"); if (a->flags & RTF_TAGGED) |