2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-30 22:05:19 +00:00

bundle: New action "bundle_load".

The bundle_load action behaves the same as the bundle action,
except instead of outputting, it writes its result to a register.
This commit is contained in:
Ethan Jackson
2011-07-20 15:07:46 -07:00
parent 04a85497b9
commit a368bb53d9
12 changed files with 175 additions and 36 deletions

View File

@@ -507,6 +507,8 @@ str_to_action(char *str, struct ofpbuf *b)
autopath_parse(naa, arg);
} else if (!strcasecmp(act, "bundle")) {
bundle_parse(b, arg);
} else if (!strcasecmp(act, "bundle_load")) {
bundle_parse_load(b, arg);
} else if (!strcasecmp(act, "output")) {
put_output_action(b, str_to_u32(arg));
} else if (!strcasecmp(act, "enqueue")) {