diff options
| author | Russ White <russ@riw.us> | 2024-06-24 07:17:27 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-24 07:17:27 -0400 |
| commit | 87c2f100e1e764546ae801d558a40122c78faee6 (patch) | |
| tree | 2d75f5ed14f786b4721b7b09d3370d22321b05cf /ospfd/ospf_interface.h | |
| parent | bf5f0f19eb1af1bfc130f1839b74dc2af309db49 (diff) | |
| parent | c494702929d15141e8f3fd4a1d9f85095076a4b7 (diff) | |
Merge pull request #16128 from LabNConsulting/aceelindem/ospf-ls-retrans-improve
ospfd: Improve OSPF neighbor retransmission list granularity and pacing
Diffstat (limited to 'ospfd/ospf_interface.h')
| -rw-r--r-- | ospfd/ospf_interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ospfd/ospf_interface.h b/ospfd/ospf_interface.h index 45d0b7943a..a944847b5d 100644 --- a/ospfd/ospf_interface.h +++ b/ospfd/ospf_interface.h @@ -47,6 +47,8 @@ struct ospf_if_params { output_cost_cmd); /* Command Interface Output Cost */ DECLARE_IF_PARAM(uint32_t, retransmit_interval); /* Retransmission Interval */ + DECLARE_IF_PARAM(uint32_t, + retransmit_window); /* Retransmission Window */ DECLARE_IF_PARAM(uint8_t, passive_interface); /* OSPF Interface is passive: no sending or receiving (no need to @@ -296,6 +298,7 @@ struct ospf_interface { uint32_t ls_ack_out; /* LS Ack message output count. */ uint32_t discarded; /* discarded input count by error. */ uint32_t state_change; /* Number of status change. */ + uint32_t ls_rxmt_lsa; /* Number of LSAs retransmitted. */ uint32_t full_nbrs; |
