diff options
author | Acee <aceelindem@gmail.com> | 2023-05-18 16:43:52 +0200 |
---|---|---|
committer | Acee <aceelindem@gmail.com> | 2023-05-22 21:51:41 +0200 |
commit | 0d8ef0477ca02ead3ce9b6dd63f6943fd2b02dec (patch) | |
tree | 6695da96b114a226a7d63990f0e1d623b874fcce /lib/libospf.h | |
parent | Merge pull request #13560 from donaldsharp/fpm_netlink_aroni (diff) | |
download | frr-0d8ef0477ca02ead3ce9b6dd63f6943fd2b02dec.tar.xz frr-0d8ef0477ca02ead3ce9b6dd63f6943fd2b02dec.zip |
ospfd: OSPF P2MP Delayed Reflooding configuration
Currently, delayed reflooding on P2MP interfaces for LSAs received
from neighbors on the interface is unconditionally (see commit
c706f0e32ba8aa8780a0618b6fbba364c383ae05). In some cases, this
change wasn't desirable and this feature makes delayed reflooding
configurable for P2MP interfaces via the CLI command:
"ip ospf network point-to-multipoint delay-reflood" in interface
submode.
Signed-off-by: Acee <aceelindem@gmail.com>
Diffstat (limited to 'lib/libospf.h')
-rw-r--r-- | lib/libospf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libospf.h b/lib/libospf.h index 676b563ff..9eaca9a1a 100644 --- a/lib/libospf.h +++ b/lib/libospf.h @@ -68,6 +68,7 @@ extern "C" { #define OSPF_MTU_IGNORE_DEFAULT 0 #define OSPF_FAST_HELLO_DEFAULT 0 +#define OSPF_P2MP_DELAY_REFLOOD_DEFAULT false #define OSPF_AREA_BACKBONE 0x00000000 /* 0.0.0.0 */ #define OSPF_AREA_RANGE_COST_UNSPEC -1U |