diff options
author | Pavel Machek <pavel@ucw.cz> | 1998-10-07 19:33:50 +0000 |
---|---|---|
committer | Pavel Machek <pavel@ucw.cz> | 1998-10-07 19:33:50 +0000 |
commit | 1d941de47a90fb9ca39d7acf6aa396447d1fc7df (patch) | |
tree | 390e564ca5e8276bd3e2d0ad73ad1cb2bb7421fb /proto/rip/rip.h | |
parent | 8c43696da0c0680820aa949da35e823e68162788 (diff) |
RIP now somehow listens to main routing table (dont expect it to work)
Diffstat (limited to 'proto/rip/rip.h')
-rw-r--r-- | proto/rip/rip.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/proto/rip/rip.h b/proto/rip/rip.h index 3af19eee..5d78b2ee 100644 --- a/proto/rip/rip.h +++ b/proto/rip/rip.h @@ -36,16 +36,17 @@ struct rip_block { struct rip_entry { node n; - ip_addr whotoldme; + ip_addr whotoldme; ip_addr network; int pxlen; ip_addr nexthop; - int metric; u16 tag; bird_clock_t updated, changed; + int flags; +#define RIP_F_EXTERNAL 1 }; struct rip_packet { |