summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1999-01-12 17:40:55 +0100
committerPavel Machek <pavel@ucw.cz>1999-01-12 17:40:55 +0100
commit50e89a6ea26caba59c7d4dd512fdc12c09cee64c (patch)
tree7c30e4e353116c172233471a067b88fe342868f5
parent18fff6a1979725c1ed839d9a10285e22dc0b8214 (diff)
downloadbird-50e89a6ea26caba59c7d4dd512fdc12c09cee64c.tar
bird-50e89a6ea26caba59c7d4dd512fdc12c09cee64c.zip
Patterns expanded in the right way
-rw-r--r--proto/rip/config.Y36
-rw-r--r--proto/rip/rip.c1
-rw-r--r--proto/rip/rip.h13
3 files changed, 41 insertions, 9 deletions
diff --git a/proto/rip/config.Y b/proto/rip/config.Y
index 6556560..7d6c993 100644
--- a/proto/rip/config.Y
+++ b/proto/rip/config.Y
@@ -8,8 +8,12 @@
To add:
passive option (== do not send routing updates to this interface)
+version1 switch
+multicast off option for interface
+interface mode broadcast/multicast/quiet
+*/
CF_HDR
@@ -18,13 +22,15 @@ CF_HDR
#include "nest/iface.h"
void rip_dev_add_iface(char *);
-struct iface_patt *rip_get_iface(void);
+struct rip_patt *rip_get_iface(void);
#define THIS_PROTO ((struct rip_proto *) this_proto)
CF_DECLS
-CF_KEYWORDS(RIP, INFINITY, METRIC, PORT, PERIOD, GARBAGETIME)
+CF_KEYWORDS(RIP, INFINITY, METRIC, PORT, PERIOD, GARBAGETIME, MODE, MULTICAST, BROADCAST, QUIET, DEFAULT)
+
+%type <i> rip_mode
CF_GRAMMAR
@@ -46,10 +52,22 @@ rip_proto:
| rip_proto rip_iface_list ';'
;
+
+rip_mode:
+ MULTICAST { $$=IM_MULTICAST; }
+ | BROADCAST { $$=IM_BROADCAST; }
+ | QUIET { $$=IM_QUIET; }
+ | DEFAULT { $$=IM_DEFAULT; }
+ ;
+
rip_iface_item:
| METRIC expr {
- struct iface_patt *k = rip_get_iface();
- k->u.rip.metric = $2;
+ struct rip_patt *k = rip_get_iface();
+ k->metric = $2;
+ }
+ | MODE rip_mode {
+ struct rip_patt *k = rip_get_iface();
+ k->mode = $2;
}
;
@@ -70,16 +88,16 @@ CF_CODE
void
rip_dev_add_iface(char *n)
{
- struct iface_patt *k = cfg_alloc(sizeof(struct iface_patt));
+ struct rip_patt *k = cfg_alloc(sizeof(struct rip_patt));
- k->pattern = cfg_strdup(n);
- add_tail(&THIS_PROTO->iface_list, &k->n);
+ k->i.pattern = cfg_strdup(n);
+ add_tail(&THIS_PROTO->iface_list, &k->i.n);
}
-struct iface_patt *
+struct rip_patt *
rip_get_iface(void)
{
- struct iface_patt *k = TAIL(THIS_PROTO->iface_list);
+ struct rip_patt *k = TAIL(THIS_PROTO->iface_list);
if (!k)
cf_error( "This cannot happen" );
return k;
diff --git a/proto/rip/rip.c b/proto/rip/rip.c
index 2ca1e1e..68d2949 100644
--- a/proto/rip/rip.c
+++ b/proto/rip/rip.c
@@ -455,6 +455,7 @@ new_iface(struct proto *p, struct iface *new, unsigned long flags)
want_multicast = 0 && (flags & IF_MULTICAST);
/* FIXME: should have config option to disable this one */
+ /* FIXME: lookup multicasts over unnumbered links */
rif->sock = sk_new( p->pool );
rif->sock->type = want_multicast?SK_UDP_MC:SK_UDP;
diff --git a/proto/rip/rip.h b/proto/rip/rip.h
index cfe0d67..0fcda20 100644
--- a/proto/rip/rip.h
+++ b/proto/rip/rip.h
@@ -65,8 +65,21 @@ struct rip_interface {
struct iface *iface;
sock *sock;
struct rip_connection *busy;
+
int metric; /* User configurable data */
+ int mode;
+#define IM_DEFAULT 0
+#define IM_QUIET 1
+#define IM_MULTICAST 2
+#define IM_BROADCAST 3
+};
+
+struct rip_patt {
+ struct iface_patt i;
+
+ int metric;
+ int mode;
};
struct rip_proto {