]> git.puffer.fish Git - mirror/frr.git/commitdiff
lib,ospf6d: fix reference bandwidth description 10151/head
authorPhilippe Guibert <philippe.guibert@6wind.com>
Wed, 29 Apr 2020 08:05:19 +0000 (10:05 +0200)
committerPhilippe Guibert <philippe.guibert@6wind.com>
Mon, 29 Jan 2024 13:52:35 +0000 (14:52 +0100)
Fix reference bandwidth description. It is Kbps, not Mbps.

Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Signed-off-by: Louis Scalbert <louis.scalbert@6wind.com>
lib/libospf.h
ospf6d/ospf6_interface.h

index 9a643256c23dad2d33e5e90f416682db9860323d..45e7fb187069c4c9e5bf5e2a0aa2a487c7f16445 100644 (file)
@@ -61,7 +61,7 @@ extern "C" {
 #define OSPF_TRANSMIT_DELAY_DEFAULT         1
 #define OSPF_DEFAULT_BANDWIDTH          10000  /* Mbps */
 
-#define OSPF_DEFAULT_REF_BANDWIDTH     100000  /* Mbps */
+#define OSPF_DEFAULT_REF_BANDWIDTH     100000  /* Kbps */
 
 #define OSPF_POLL_INTERVAL_DEFAULT         60
 #define OSPF_NEIGHBOR_PRIORITY_DEFAULT      0
index 2b42af390a0cf38d6359872a8720b9e7a9624860..46a7c90dc74be68c02cbe92a504698cd1c1c6dac 100644 (file)
@@ -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