diff options
author | Russ White <russ@riw.us> | 2023-05-16 14:37:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-16 14:37:19 +0200 |
commit | 425fc1f5b7f42c16d27ecdc602546d4521793d6f (patch) | |
tree | 7a12a2bec6d0ab06aa61c54fc738081893eadd41 /ospf6d/ospf6_interface.h | |
parent | Merge pull request #12050 from LabNConsulting/working/lb/topotest-220909 (diff) | |
parent | tests: Fix ospfv3 output to include Graceful Restart info (diff) | |
download | frr-425fc1f5b7f42c16d27ecdc602546d4521793d6f.tar.xz frr-425fc1f5b7f42c16d27ecdc602546d4521793d6f.zip |
Merge pull request #12949 from opensourcerouting/ospf-unplanned-gr
OSPF GR for unplanned outages
Diffstat (limited to 'ospf6d/ospf6_interface.h')
-rw-r--r-- | ospf6d/ospf6_interface.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ospf6d/ospf6_interface.h b/ospf6d/ospf6_interface.h index ae0744b25..5942df0ab 100644 --- a/ospf6d/ospf6_interface.h +++ b/ospf6d/ospf6_interface.h @@ -74,6 +74,15 @@ struct ospf6_interface { uint16_t dead_interval; uint32_t rxmt_interval; + /* Graceful-Restart data. */ + struct { + struct { + uint16_t interval; + uint16_t elapsed_seconds; + struct event *t_grace_send; + } hello_delay; + } gr; + uint32_t state_change; /* Cost */ |