Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

integration test ACL IP CRUD #1428

Merged
merged 13 commits into from
Aug 8, 2019
8 changes: 4 additions & 4 deletions plugins/vpp/aclplugin/vppcalls/acl_vppcalls.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ type ACLVppAPI interface {
AddACLToInterfaceAsIngress(aclIndex uint32, ifName string) error
// AddACLToInterfaceAsEgress adds ACL (L3/L4) to single interface as egress.
AddACLToInterfaceAsEgress(aclIndex uint32, ifName string) error
// AddACLToInterfaceAsIngress deletes ACL (L3/L4) from single interface as ingress.
// DeleteACLFromInterfaceAsIngress deletes ACL (L3/L4) from single interface as ingress.
DeleteACLFromInterfaceAsIngress(aclIndex uint32, ifName string) error
// AddACLToInterfaceAsEgress deletes ACL (L3/L4) from single interface as egress.
// DeleteACLFromInterfaceAsEgress deletes ACL (L3/L4) from single interface as egress.
DeleteACLFromInterfaceAsEgress(aclIndex uint32, ifName string) error
// AddACLToInterfaceAsIngress adds MACIP ACL (L2) to single interface.
// AddMACIPACLToInterface adds MACIP ACL (L2) to single interface.
AddMACIPACLToInterface(aclIndex uint32, ifName string) error
// AddACLToInterfaceAsEgress deletes MACIP ACL (L2) from single interface.
// DeleteMACIPACLFromInterface deletes MACIP ACL (L2) from single interface.
DeleteMACIPACLFromInterface(aclIndex uint32, ifName string) error
}

Expand Down
Loading