From: Pavel Machek Date: Wed, 26 May 1999 14:37:47 +0000 (+0000) Subject: Make rip use newly defined password lists. X-Git-Tag: v1.2.0~1558 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fd5f8704bb7c2e9845a7c4785ace83a2b77d2c57;p=thirdparty%2Fbird.git Make rip use newly defined password lists. --- diff --git a/proto/rip/config.Y b/proto/rip/config.Y index f7839f26b..a3e877dac 100644 --- a/proto/rip/config.Y +++ b/proto/rip/config.Y @@ -24,7 +24,7 @@ struct rip_patt *rip_get_iface(void); CF_DECLS -CF_KEYWORDS(RIP, INFINITY, METRIC, PORT, PERIOD, GARBAGETIME, PASSWORD, +CF_KEYWORDS(RIP, INFINITY, METRIC, PORT, PERIOD, GARBAGETIME, PASSWORDS, MODE, BROADCAST, QUIET, NOLISTEN, VERSION1, AUTHENTICATION, NONE, PLAINTEXT, MD5) @@ -47,8 +47,8 @@ RIP_CFG: | RIP_CFG PORT expr ';' { RIP_CFG->port = $3; } | RIP_CFG PERIOD expr ';' { RIP_CFG->period = $3; } | RIP_CFG GARBAGETIME expr ';' { RIP_CFG->garbage_time = $3; } - | RIP_CFG PASSWORD TEXT ';' { RIP_CFG->password = $3; } | RIP_CFG AUTHENTICATION rip_auth ';' {RIP_CFG->authtype = $3; } + | RIP_CFG PASSWORDS '{' password_list '}' {RIP_CFG->passwords = $4; } | RIP_CFG rip_iface_list ';' ; diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 16c63aec8..8d8148617 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -603,7 +603,7 @@ rip_init_config(struct rip_proto_config *c) c->port = 520; c->period = 30; c->garbage_time = 120+180; - c->password = "PASSWORD"; + c->passwords = NULL; c->authtype = AT_NONE; } diff --git a/proto/rip/rip.h b/proto/rip/rip.h index a413f7198..efad4a6de 100644 --- a/proto/rip/rip.h +++ b/proto/rip/rip.h @@ -3,6 +3,7 @@ */ #include "nest/route.h" +#include "nest/password.h" struct rip_connection { node n; @@ -92,7 +93,7 @@ struct rip_proto_config { int period; int garbage_time; - char *password; + struct password_item *passwords; int authtype; #define AT_NONE 0 #define AT_PLAINTEXT 2