summaryrefslogtreecommitdiff
path: root/ospf6d/ospf6_interface.h
diff options
context:
space:
mode:
authorIgor Ryzhov <iryzhov@nfware.com>2021-04-24 00:47:31 +0300
committerGitHub <noreply@github.com>2021-04-24 00:47:31 +0300
commit2ccc4933339b99a529569c615a55b3319a356952 (patch)
tree76e2b912f00791ea8cbceb6f798b572a27d1c6e3 /ospf6d/ospf6_interface.h
parentd06501f3c6b43f32e7a6bc2d0d365fca290ba2e2 (diff)
parentac506cb20e02dcc9954ed47c74b141252ceda2e7 (diff)
Merge pull request #8495 from opensourcerouting/ospfv3-bfd-rework
ospf6d: rework BFD integration and add BFD profiles support
Diffstat (limited to 'ospf6d/ospf6_interface.h')
-rw-r--r--ospf6d/ospf6_interface.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ospf6d/ospf6_interface.h b/ospf6d/ospf6_interface.h
index 2a5a9ba4a2..a45a841406 100644
--- a/ospf6d/ospf6_interface.h
+++ b/ospf6d/ospf6_interface.h
@@ -119,7 +119,13 @@ struct ospf6_interface {
char *plist_name;
/* BFD information */
- void *bfd_info;
+ struct {
+ bool enabled;
+ uint8_t detection_multiplier;
+ uint32_t min_rx;
+ uint32_t min_tx;
+ char *profile;
+ } bfd_config;
/* Statistics Fields */
uint32_t hello_in;