mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 14:47:46 +01:00
quagga-unstable: Delete AS_CONFED_SEQUENCE when prepending an AS_SEQUENCE type segment
SVN-Revision: 17010
This commit is contained in:
parent
774f667614
commit
24d4b8f31a
13
package/openwrt-packages/net/quagga-unstable/patches/130-confed_aspath_delete_on_prepend.patch
Normal file
13
package/openwrt-packages/net/quagga-unstable/patches/130-confed_aspath_delete_on_prepend.patch
Normal file
@ -0,0 +1,13 @@
|
||||
--- a/bgpd/bgp_aspath.c
|
||||
+++ b/bgpd/bgp_aspath.c
|
||||
@@ -1208,6 +1208,10 @@ aspath_prepend (struct aspath *as1, stru
|
||||
while (seg1 && seg1->next)
|
||||
seg1 = seg1->next;
|
||||
|
||||
+ /* Delete any AS_CONFED_SEQUENCE segment from as2. */
|
||||
+ if (seg1->type == AS_SEQUENCE && seg2->type == AS_CONFED_SEQUENCE)
|
||||
+ as2 = aspath_delete_confed_seq (as2);
|
||||
+
|
||||
/* Compare last segment type of as1 and first segment type of as2. */
|
||||
if (seg1->type != seg2->type)
|
||||
return aspath_merge (as1, as2);
|
Loading…
Reference in New Issue
Block a user