-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from jozef-slezak/master
Wrap global sequencers of L2 drivers to a struct (because auto tests) + added assertions
- Loading branch information
Showing
7 changed files
with
125 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package linuxtestdata | ||
|
||
import ( | ||
"github.com/ligato/vpp-agent/plugins/linuxplugin/model/interfaces" | ||
) | ||
|
||
var Agent1Veth01 = interfaces.LinuxInterfaces_Interface{ | ||
Name: "agent1_afpacket", | ||
Enabled: true, | ||
//PhysAddress: "02:00:00:00:00:02", | ||
Mtu: 1500, | ||
Type: interfaces.LinuxInterfaces_VETH, | ||
//IpAddresses: []string{"10.0.0.10/24"}, | ||
Veth: &interfaces.LinuxInterfaces_Interface_Veth{ | ||
PeerIfName: "_agent1_", | ||
}, | ||
} |
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