diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-10-12 21:06:47 +0300 | 
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-10-26 11:26:57 +0300 | 
| commit | 97a52c82a569f4a2ba792fbd734f5e635a057e6f (patch) | |
| tree | 83075d412d0a44d8fc2db4d2e55ec1fd405a65b6 /bgpd/bgp_dump.c | |
| parent | 91e9aee0877ca08b36f844756c6563ef175ab118 (diff) | |
bgpd: Implement Accumulated IGP Metric Attribute for BGP
https://www.rfc-editor.org/rfc/rfc7311.html
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'bgpd/bgp_dump.c')
| -rw-r--r-- | bgpd/bgp_dump.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_dump.c b/bgpd/bgp_dump.c index 11e84f00b4..254996edad 100644 --- a/bgpd/bgp_dump.c +++ b/bgpd/bgp_dump.c @@ -376,7 +376,7 @@ bgp_dump_route_node_record(int afi, struct bgp_dest *dest,  		/* Dump attribute. */  		/* Skip prefix & AFI/SAFI for MP_NLRI */ -		bgp_dump_routes_attr(obuf, path->attr, p); +		bgp_dump_routes_attr(obuf, path, p);  		cur_endp = stream_get_endp(obuf);  		if (cur_endp > BGP_STANDARD_MESSAGE_MAX_PACKET_SIZE  | 
