summaryrefslogtreecommitdiff
path: root/bgpd/bgpd.h
diff options
context:
space:
mode:
authorRuss White <russ@riw.us>2023-06-20 09:20:36 -0400
committerGitHub <noreply@github.com>2023-06-20 09:20:36 -0400
commit4d9fb376c8c4feab96a9ea53e5da9c7d3ba91da1 (patch)
tree3a50402c04d3883125c23614b8de1fb5ca63e6cf /bgpd/bgpd.h
parent554c2e0350f59bbdc4fb38fea91cafb13acdd319 (diff)
parent78981a80c7457b96e73c108280577d4cbb8aee03 (diff)
Merge pull request #13728 from opensourcerouting/fix/addpath_drop_non_best_addpaths
bgpd: Implement neighbor X addpath-tx-best-selected command
Diffstat (limited to 'bgpd/bgpd.h')
-rw-r--r--bgpd/bgpd.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h
index 658bb5a58e..95bc07d167 100644
--- a/bgpd/bgpd.h
+++ b/bgpd/bgpd.h
@@ -1799,6 +1799,9 @@ struct peer {
#define BGP_MAX_SOFT_VERSION 64
char *soft_version;
+ /* Add-Path Best selected paths number to advertise */
+ uint8_t addpath_best_selected[AFI_MAX][SAFI_MAX];
+
QOBJ_FIELDS;
};
DECLARE_QOBJ_TYPE(peer);