We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 813765f commit cb908b2Copy full SHA for cb908b2
ovs/client.go
@@ -270,6 +270,14 @@ func Pipe(fn PipeFunc) OptionFunc {
270
}
271
272
273
+// Strict deactivates wildcards for matching purposes when shelling to
274
+// 'ovs-ofctl'.
275
+func Strict() OptionFunc {
276
+ return func(c *Client) {
277
+ c.ofctlFlags = append(c.ofctlFlags, "--strict")
278
+ }
279
+}
280
+
281
const (
282
// FlowFormatNXMTableID is a flow format which allows Nicira Extended match
283
// with the ability to place a flow in a specific table.
0 commit comments