summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-05-31 20:55:35 +0200
committerMartin Mares <mj@ucw.cz>1999-05-31 20:55:35 +0200
commitbb027be1e232ca2207a03a8e001441965cc07801 (patch)
treeb7a569cdde146f6eb6fe02dd73e2ec69f502613a
parent75b84c34e3434209517f2ebc8160f39d33e3735e (diff)
downloadbird-bb027be1e232ca2207a03a8e001441965cc07801.tar
bird-bb027be1e232ca2207a03a8e001441965cc07801.zip
Added extra argument to rt_update hook which contains a pointer to the
temporary attribute list.
-rw-r--r--nest/protocol.h3
-rw-r--r--nest/rt-table.c2
-rw-r--r--proto/rip/rip.c2
-rw-r--r--sysdep/unix/krt.c2
4 files changed, 5 insertions, 4 deletions
diff --git a/nest/protocol.h b/nest/protocol.h
index 3aed2f2..84c46fa 100644
--- a/nest/protocol.h
+++ b/nest/protocol.h
@@ -22,6 +22,7 @@ struct proto_config;
struct config;
struct proto;
struct event;
+struct ea_list;
/*
* Routing Protocol
@@ -111,7 +112,7 @@ struct proto {
void (*if_notify)(struct proto *, unsigned flags, struct iface *i);
void (*ifa_notify)(struct proto *, unsigned flags, struct ifa *a);
- void (*rt_notify)(struct proto *, struct network *net, struct rte *new, struct rte *old);
+ void (*rt_notify)(struct proto *, struct network *net, struct rte *new, struct rte *old, struct ea_list *tmpa);
void (*neigh_notify)(struct neighbor *neigh);
struct ea_list *(*make_tmp_attrs)(struct rte *rt, struct linpool *pool);
void (*store_tmp_attrs)(struct rte *rt, struct ea_list *attrs);
diff --git a/nest/rt-table.c b/nest/rt-table.c
index a603c7f..7aff8b3 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -127,7 +127,7 @@ do_rte_announce(struct announce_hook *a, net *net, rte *new, rte *old, ea_list *
}
}
if (new || old)
- p->rt_notify(p, net, new, old);
+ p->rt_notify(p, net, new, old, tmpa);
if (new && new != new0) /* Discard temporary rte's */
rte_free(new);
if (old && old != old0)
diff --git a/proto/rip/rip.c b/proto/rip/rip.c
index 8d81486..446f310 100644
--- a/proto/rip/rip.c
+++ b/proto/rip/rip.c
@@ -528,7 +528,7 @@ rip_if_notify(struct proto *p, unsigned c, struct iface *iface)
}
static void
-rip_rt_notify(struct proto *p, struct network *net, struct rte *new, struct rte *old)
+rip_rt_notify(struct proto *p, struct network *net, struct rte *new, struct rte *old, struct ea_list *tmpa)
{
CHK_MAGIC;
diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c
index 364147d..0647346 100644
--- a/sysdep/unix/krt.c
+++ b/sysdep/unix/krt.c
@@ -574,7 +574,7 @@ krt_scan(timer *t)
*/
static void
-krt_notify(struct proto *P, net *net, rte *new, rte *old)
+krt_notify(struct proto *P, net *net, rte *new, rte *old, struct ea_list *tmpa)
{
struct krt_proto *p = (struct krt_proto *) P;