}
n = net_get( p->table, b->network, pxlen );
r = rte_get_temp(a);
- r->u.rip.metric = ntohl(b->metric) + rif->patt->metric;
+ r->u.rip.metric = ntohl(b->metric) + rif->metric;
if (r->u.rip.metric > P_CF->infinity) r->u.rip.metric = P_CF->infinity;
r->u.rip.tag = ntohl(b->tag);
r->net = n;
struct iface *iface = rif->iface;
if (!iface) continue;
- if (rif->patt->mode & IM_QUIET) continue;
+ if (rif->mode & IM_QUIET) continue;
if (!(iface->flags & IF_UP)) continue;
rif->triggered = (P->tx_count % 6);
new_iface(struct proto *p, struct iface *new, unsigned long flags, struct iface_patt *patt )
{
struct rip_interface *rif;
+ struct rip_patt *PATT = (struct rip_patt *) patt;
rif = mb_allocz(p->pool, sizeof( struct rip_interface ));
rif->iface = new;
rif->proto = p;
rif->busy = NULL;
- rif->patt = (struct rip_patt *) patt;
-
- if (rif->patt)
- rif->multicast = (!(rif->patt->mode & IM_BROADCAST)) && (flags & IF_MULTICAST);
+ if (PATT) {
+ rif->mode = PATT->mode;
+ rif->metric = PATT->metric;
+ rif->multicast = (!(PATT->mode & IM_BROADCAST)) && (flags & IF_MULTICAST);
+ }
/* lookup multicasts over unnumbered links - no: rip is not defined over unnumbered links */
if (rif->multicast)
if (!ipa_nonzero(rif->sock->daddr)) {
log( L_WARN "%s: interface %s is too strange for me", P_NAME, rif->iface ? rif->iface->name : "(dummy)" );
} else
- if (!(rif->patt->mode & IM_NOLISTEN))
+ if (!(rif->mode & IM_NOLISTEN))
if (sk_open(rif->sock)<0) {
log( L_ERR "%s: could not listen on %s", P_NAME, rif->iface ? rif->iface->name : "(dummy)" );
/* Don't try to transmit into this one? Well, why not? This should not happen, anyway :-) */
rip_reconfigure(struct proto *p, struct proto_config *c)
{
struct rip_config *new = (struct rip_config *) c;
- int generic = sizeof(struct proto_config) + sizeof(list);
+ int generic = sizeof(struct proto_config) + sizeof(list) /* + sizeof(struct password_item *) */;
+#if 0
+ if (!password_same())
+ return 0;
+#endif
return !memcmp(((byte *) P_CF) + generic,
((byte *) new) + generic,
sizeof(struct rip_proto_config) - generic);
struct iface *iface;
sock *sock;
struct rip_connection *busy;
- struct rip_patt *patt;
+ int metric; /* You don't want to put struct rip_patt *patt here -- think about reconfigure */
+ int mode;
int triggered;
struct object_lock *lock;
int multicast;
struct rip_proto_config {
struct proto_config c;
list iface_list; /* Patterns configured -- keep it first; see rip_reconfigure why */
+ struct password_item *passwords; /* Passwords, keep second */
int infinity; /* User configurable data */
int port;
int garbage_time;
int timeout_time;
- struct password_item *passwords;
int authtype;
#define AT_NONE 0
#define AT_PLAINTEXT 2