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 1141932 commit 4c0a147Copy full SHA for 4c0a147
ovs/client.go
@@ -278,6 +278,14 @@ func Pipe(fn PipeFunc) OptionFunc {
278
}
279
280
281
+// Strict deactivates wildcards for matching purposes when shelling to
282
+// 'ovs-ofctl'.
283
+func Strict() OptionFunc {
284
+ return func(c *Client) {
285
+ c.ofctlFlags = append(c.ofctlFlags, "--strict")
286
+ }
287
+}
288
+
289
const (
290
// FlowFormatNXMTableID is a flow format which allows Nicira Extended match
291
// with the ability to place a flow in a specific table.
0 commit comments