Commit 767179e 1 parent ed121c9 commit 767179e Copy full SHA for 767179e
File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -497,6 +497,12 @@ impl<Octs: Octets> Capability<Octs> {
497
497
parser. advance ( domain_len) ?;
498
498
} ,
499
499
CapabilityType :: SoftwareVersion => {
500
+ // As long as this Capability is not stable, jump over it
501
+ let len = parser. parse_u8 ( ) ? as usize ;
502
+ parser. advance ( len) ?;
503
+ } ,
504
+ CapabilityType :: PathsLimit => {
505
+ // As long as this Capability is not stable, jump over it
500
506
let len = parser. parse_u8 ( ) ? as usize ;
501
507
parser. advance ( len) ?;
502
508
} ,
@@ -713,6 +719,7 @@ typeenum!(
713
719
71 => LongLivedGracefulRestart ,
714
720
73 => FQDN ,
715
721
75 => SoftwareVersion ,
722
+ 76 => PathsLimit ,
716
723
128 => PrestandardRouteRefresh ,
717
724
130 => PrestandardOutboundRouteFiltering ,
718
725
131 => PrestandardMultisession ,
You can’t perform that action at this time.
0 commit comments