ip_addr gw; /* Next hop */
ip_addr from; /* Advertising router */
struct iface *iface; /* Outgoing interface */
- struct ea_list *attrs; /* Extended Attribute chain */
+ struct ea_list *eattrs; /* Extended Attribute chain */
} rta;
#define RTS_DUMMY 0 /* Dummy route to be removed soon */
static inline void rta_free(rta *r) { if (r && !--r->uc) rta__free(r); }
void rta_dump(rta *);
void rta_dump_all(void);
-static inline eattr * rta_find(rta *a, unsigned ea) { return ea_find(a->attrs, ea); }
+static inline eattr * rta_find(rta *a, unsigned ea) { return ea_find(a->eattrs, ea); }
/*
* Default protocol preferences
ipa_equal(x->gw, y->gw) &&
ipa_equal(x->from, y->from) &&
x->iface == y->iface &&
- ea_same(x->attrs, y->attrs));
+ ea_same(x->eattrs, y->eattrs));
}
static rta *
memcpy(r, o, sizeof(rta));
r->uc = 1;
- r->attrs = ea_list_copy(o->attrs);
+ r->eattrs = ea_list_copy(o->eattrs);
return r;
}
rta *r;
ASSERT(!(o->aflags & RTAF_CACHED));
- if (o->attrs)
+ if (o->eattrs)
{
- if (o->attrs->next) /* Multiple ea_list's, need to merge them */
+ if (o->eattrs->next) /* Multiple ea_list's, need to merge them */
{
- ea_list *ml = alloca(ea_scan(o->attrs));
- ea_merge(o->attrs, ml);
- o->attrs = ml;
+ ea_list *ml = alloca(ea_scan(o->eattrs));
+ ea_merge(o->eattrs, ml);
+ o->eattrs = ml;
}
- ea_sort(o->attrs);
+ ea_sort(o->eattrs);
}
for(r=first_rta; r; r=r->next)
debug(" ->%I", a->gw);
if (a->dest == RTD_DEVICE || a->dest == RTD_ROUTER)
debug(" [%s]", a->iface ? a->iface->name : "???" );
- if (a->attrs)
+ if (a->eattrs)
{
debug(" EA: ");
- ea_dump(a->attrs);
+ ea_dump(a->eattrs);
}
}