From 2095e10be62aa96a4ad13d4f898ad232f1ecf9b6 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 2 May 2012 14:51:51 -0700 Subject: ofp-util: Match on NXAST_CONTROLLER as an output to OFPP_CONTROLLER. Found by inspection. Signed-off-by: Ben Pfaff --- lib/ofp-util.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/ofp-util.c b/lib/ofp-util.c index 48be7749..f3c31de4 100644 --- a/lib/ofp-util.c +++ b/lib/ofp-util.c @@ -3760,11 +3760,13 @@ ofputil_put_action(enum ofputil_action_code code, struct ofpbuf *buf) bool action_outputs_to_port(const union ofp_action *action, ovs_be16 port) { - switch (ntohs(action->type)) { - case OFPAT10_OUTPUT: + switch (ofputil_decode_action(action)) { + case OFPUTIL_OFPAT10_OUTPUT: return action->output.port == port; - case OFPAT10_ENQUEUE: + case OFPUTIL_OFPAT10_ENQUEUE: return ((const struct ofp_action_enqueue *) action)->port == port; + case OFPUTIL_NXAST_CONTROLLER: + return port == htons(OFPP_CONTROLLER); default: return false; } -- cgit v1.2.3