When sending BGP attributes, re-create the flags, so that attributes

added by filters which get the flags wrong are fixed automagically.
This commit is contained in:
Martin Mares 2000-04-25 21:21:52 +00:00
parent efcece2da3
commit 684c25d98f

View file

@ -372,6 +372,8 @@ bgp_get_bucket(struct bgp_proto *p, ea_list *old, ea_list *tmp, int originate)
{
if (!bgp_attr_table[code].allow_in_ebgp && !p->is_internal)
continue;
/* The flags might have been zero if the attr was added by filters */
a->flags = (a->flags & BAF_PARTIAL) | bgp_attr_table[code].expected_flags;
}
if (code < 32)
seen |= 1 << code;