diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-04-08 09:26:29 +0300 | 
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-04-22 17:49:00 +0300 | 
| commit | d9219ee847a179850c25d9d0f08511becc2d3102 (patch) | |
| tree | 69cdc91b7a624485f50bfdeea6998c040bac092c /bgpd/bgp_ecommunity.h | |
| parent | e0b64f241454c60abeb91ee72773d279c8699095 (diff) | |
bgpd: Drop non ieee encoding parsing for ipv6 extended communities
Link-bandwidth is encoded into extended community, not ipv6 extended community.
Thus it's not needed here at all.
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'bgpd/bgp_ecommunity.h')
| -rw-r--r-- | bgpd/bgp_ecommunity.h | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/bgpd/bgp_ecommunity.h b/bgpd/bgp_ecommunity.h index 3b558ea049..d319846887 100644 --- a/bgpd/bgp_ecommunity.h +++ b/bgpd/bgp_ecommunity.h @@ -326,8 +326,7 @@ extern void ecommunity_free(struct ecommunity **);  extern struct ecommunity *ecommunity_parse(uint8_t *, unsigned short,  					   bool disable_ieee_floating);  extern struct ecommunity *ecommunity_parse_ipv6(uint8_t *pnt, -						unsigned short length, -						bool disable_ieee_floating); +						unsigned short length);  extern struct ecommunity *ecommunity_dup(struct ecommunity *);  extern struct ecommunity *ecommunity_merge(struct ecommunity *,  					   struct ecommunity *);  | 
