diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2024-02-02 12:51:35 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-02 12:51:35 -0500 | 
| commit | 3d57f0439533f415b0ab1c95e5fed15e099a32c3 (patch) | |
| tree | a6b7a68a2b17eb3c4f3aded966cba85c83ed6b54 /ospf6d | |
| parent | 080054686fbfb30272106c5a18cf0f984cfb818f (diff) | |
| parent | 42c1652dcb744d41178df1f5acad1e0d10cdf42b (diff) | |
Merge pull request #10151 from pguibert6WIND/ensure_routing_protocols_good_bw
zebra: avoid having speed set to UINT32_MAX
Diffstat (limited to 'ospf6d')
| -rw-r--r-- | ospf6d/ospf6_interface.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ospf6d/ospf6_interface.h b/ospf6d/ospf6_interface.h index 2b42af390a..46a7c90dc7 100644 --- a/ospf6d/ospf6_interface.h +++ b/ospf6d/ospf6_interface.h @@ -231,7 +231,7 @@ extern const char *const ospf6_interface_state_str[];  #define OSPF6_INTERFACE_TRANSDELAY     1  #define OSPF6_INTERFACE_INSTANCE_ID    0  #define OSPF6_INTERFACE_BANDWIDTH      10000   /* Mbps */ -#define OSPF6_REFERENCE_BANDWIDTH      100000  /* Mbps */ +#define OSPF6_REFERENCE_BANDWIDTH      100000  /* Kbps */  #define OSPF6_INTERFACE_SSO_RETRY_INT  1  #define OSPF6_INTERFACE_SSO_RETRY_MAX  5  | 
