diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-04-08 09:22:02 +0300 |
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-04-22 17:48:37 +0300 |
| commit | e0b64f241454c60abeb91ee72773d279c8699095 (patch) | |
| tree | 8be50e1a00566745bffc7913af881c5baa873b3f /bgpd/bgp_attr.h | |
| parent | 85292ef926205b36d6550f90e8231184efc941ff (diff) | |
bgpd: Convert 32-bit to 64-bit link bandwidth variable (link_bw)
This is needed to implement and use larger bandwidths rather than limiting only
to theoretical 34Gbps max bandwidth.
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'bgpd/bgp_attr.h')
| -rw-r--r-- | bgpd/bgp_attr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_attr.h b/bgpd/bgp_attr.h index 164aa5ae79..3f8e2784f1 100644 --- a/bgpd/bgp_attr.h +++ b/bgpd/bgp_attr.h @@ -301,7 +301,7 @@ struct attr { uint32_t rmap_table_id; /* Link bandwidth value, if any. */ - uint32_t link_bw; + uint64_t link_bw; /* EVPN ES */ esi_t esi; |
