From: Quentin Young Date: Tue, 19 Feb 2019 23:42:06 +0000 (+0000) Subject: vrrpd: default to accept mode = true X-Git-Tag: base_7.2~330^2~67 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=929c5fb33ae40ccb30eb986e74716aa9ac130959;p=matthieu%2Ffrr.git vrrpd: default to accept mode = true We have no facilities to enforce accept mode = false yet so this is updated to reflect the actual state of the system. Signed-off-by: Quentin Young --- diff --git a/vrrpd/vrrp.c b/vrrpd/vrrp.c index 3a9746d5a9..e0f9b5286b 100644 --- a/vrrpd/vrrp.c +++ b/vrrpd/vrrp.c @@ -533,7 +533,7 @@ struct vrrp_vrouter *vrrp_vrouter_create(struct interface *ifp, uint8_t vrid, vr->vrid = vrid; vr->priority = VRRP_DEFAULT_PRIORITY; vr->preempt_mode = true; - vr->accept_mode = false; + vr->accept_mode = true; vr->v4 = vrrp_router_create(vr, AF_INET); vr->v6 = vrrp_router_create(vr, AF_INET6);