diff options
| author | Russ White <russ@riw.us> | 2023-06-20 09:20:36 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-20 09:20:36 -0400 | 
| commit | 4d9fb376c8c4feab96a9ea53e5da9c7d3ba91da1 (patch) | |
| tree | 3a50402c04d3883125c23614b8de1fb5ca63e6cf /bgpd/bgpd.h | |
| parent | 554c2e0350f59bbdc4fb38fea91cafb13acdd319 (diff) | |
| parent | 78981a80c7457b96e73c108280577d4cbb8aee03 (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.h | 3 | 
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);  | 
