-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add l3xc support (WIP) Signed-off-by: Ondrej Fabry <[email protected]> * Fix comments in proto files Signed-off-by: Ondrej Fabry <[email protected]> * Use full import path for descriptor-adapter's --import flag Signed-off-by: Ondrej Fabry <[email protected]> * Add proto for L3XC model and implement descriptor Signed-off-by: Ondrej Fabry <[email protected]> * Fix comment Signed-off-by: Ondrej Fabry <[email protected]> * Implement L3XC for all VPP versions Signed-off-by: Ondrej Fabry <[email protected]> * Skip L3XC integration tests for VPP<=19.04 Signed-off-by: Ondrej Fabry <[email protected]> * Address review comments Signed-off-by: Ondrej Fabry <[email protected]>
- Loading branch information
1 parent
c02ccfc
commit ed274f1
Showing
35 changed files
with
3,778 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
diff --git a/plugins/vpp/binapi/vpp1908/l3xc/l3xc.ba.go b/plugins/vpp/binapi/vpp1908/l3xc/l3xc.ba.go | ||
index 3bdb5510a..191e53c00 100644 | ||
--- a/plugins/vpp/binapi/vpp1908/l3xc/l3xc.ba.go | ||
+++ b/plugins/vpp/binapi/vpp1908/l3xc/l3xc.ba.go | ||
@@ -458,8 +458,8 @@ type FibPath struct { | ||
Flags FibPathFlagsf | ||
Proto FibPathNhProto | ||
Nh FibPathNh | ||
- NLabels uint8 | ||
- LabelStack []FibMplsLabel `struc:"[16]FibMplsLabel"` | ||
+ NLabels uint8 `struc:"sizeof=LabelStack"` // MANUALLY FIXED, see https://jira.fd.io/browse/VPP-1261 | ||
+ LabelStack []FibMplsLabel | ||
} | ||
|
||
func (*FibPath) GetTypeName() string { |
Oops, something went wrong.