Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type OfctlClient ¶
type OfctlClient interface { // DumpFlows returns flows of the bridge. DumpFlows(args ...string) ([]string, error) // DumpMatchedFlows returns the flow which exactly matches the matchStr. DumpMatchedFlow(matchStr string) (string, error) // DumpTableFlows returns all flows in the table. DumpTableFlows(table uint8) ([]string, error) // DumpGroups returns OpenFlow groups of the bridge. DumpGroups(args ...string) ([][]string, error) // RunOfctlCmd executes "ovs-ofctl" command and returns the outputs. RunOfctlCmd(cmd string, args ...string) ([]byte, error) }
OfctlClient is an interface for "ovs-ofctl" operations.
Click to show internal directories.
Click to hide internal directories.