From 1f2d5f91eee828e3a97d1bae900703b4b8b060b9 Mon Sep 17 00:00:00 2001 From: Rafael Zalamena Date: Thu, 31 Jan 2019 18:15:35 -0200 Subject: [PATCH] bfdd: change slow time value Let's use the RFC 5880 suggested value of 1 second for slow transmission speed. Signed-off-by: Rafael Zalamena --- bfdd/bfd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfdd/bfd.h b/bfdd/bfd.h index 08204d673a..e6fb25da0d 100644 --- a/bfdd/bfd.h +++ b/bfdd/bfd.h @@ -306,7 +306,7 @@ struct bfd_iface { #define BFD_DEFDESIREDMINTX (300 * MSEC_PER_SEC) #define BFD_DEFREQUIREDMINRX (300 * MSEC_PER_SEC) #define BFD_DEF_REQ_MIN_ECHO (50 * MSEC_PER_SEC) -#define BFD_DEF_SLOWTX (2000 * MSEC_PER_SEC) +#define BFD_DEF_SLOWTX (1000 * MSEC_PER_SEC) #define BFD_DEF_MHOP_TTL 5 #define BFD_PKT_LEN 24 /* Length of control packet */ #define BFD_TTL_VAL 255 -- 2.39.5