summaryrefslogtreecommitdiffstats
path: root/nest/route.h
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2009-05-31 15:24:27 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2009-05-31 15:24:27 +0200
commit23ac9e9a9eefe13918ee7f21a1d0f271a44d9efd (patch)
tree8216b9e5755798e342bf7a81dff03bc666ee97d9 /nest/route.h
parent23e563d86b412632644bdc4a886b0b7fb60e5175 (diff)
downloadbird-23ac9e9a9eefe13918ee7f21a1d0f271a44d9efd.tar
bird-23ac9e9a9eefe13918ee7f21a1d0f271a44d9efd.zip
Changes pipes to transfer all routes between routing table, not just optimal routes.
Diffstat (limited to 'nest/route.h')
-rw-r--r--nest/route.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/nest/route.h b/nest/route.h
index 43cfa9d..e55ae1d 100644
--- a/nest/route.h
+++ b/nest/route.h
@@ -146,6 +146,7 @@ typedef struct network {
typedef struct rte {
struct rte *next;
net *net; /* Network this RTE belongs to */
+ struct proto *sender; /* Protocol instance that sent the route to the routing table */
struct rta *attrs; /* Attributes of this route */
byte flags; /* Flags (REF_...) */
byte pflags; /* Protocol-specific flags */
@@ -178,6 +179,10 @@ typedef struct rte {
#define REF_COW 1 /* Copy this rte on write */
+/* Types of route announcement, also used as flags */
+#define RA_OPTIMAL 1 /* Announcement of optimal route change */
+#define RA_ANY 2 /* Announcement of any route change */
+
struct config;
void rt_init(void);
@@ -191,6 +196,7 @@ static inline net *net_get(rtable *tab, ip_addr addr, unsigned len) { return (ne
rte *rte_find(net *net, struct proto *p);
rte *rte_get_temp(struct rta *);
void rte_update(rtable *tab, net *net, struct proto *p, rte *new);
+void rte_update2(rtable *tab, net *net, struct proto *p, struct proto *src, rte *new);
void rte_discard(rtable *tab, rte *old);
void rte_dump(rte *);
void rte_free(rte *);
@@ -230,7 +236,7 @@ void rt_show(struct rt_show_data *);
typedef struct rta {
struct rta *next, **pprev; /* Hash chain */
- struct proto *proto; /* Protocol instance */
+ struct proto *proto; /* Protocol instance that originally created the route */
unsigned uc; /* Use count */
byte source; /* Route source (RTS_...) */
byte scope; /* Route scope (SCOPE_... -- see ip.h) */