From db09e4308a18f12d93191d057dc9e2b938ff4649 Mon Sep 17 00:00:00 2001 From: Alexandru Copot Date: Sat, 7 Sep 2013 15:36:22 +0300 Subject: [PATCH] ofp-print: display OFPT_GET_ASYNC_REPLY in same way as OFPT_SET_ASYNC Signed-off-by: Alexandru Copot Cc: Daniel Baluta Signed-off-by: Ben Pfaff --- lib/ofp-print.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/ofp-print.c b/lib/ofp-print.c index 518f9af3b..b280a3738 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -2374,8 +2374,6 @@ ofp_to_string__(const struct ofp_header *oh, enum ofpraw raw, case OFPTYPE_QUEUE_GET_CONFIG_REQUEST: case OFPTYPE_QUEUE_GET_CONFIG_REPLY: - case OFPTYPE_GET_ASYNC_REQUEST: - case OFPTYPE_GET_ASYNC_REPLY: case OFPTYPE_TABLE_FEATURES_STATS_REQUEST: case OFPTYPE_TABLE_FEATURES_STATS_REPLY: ofp_print_not_implemented(string); @@ -2547,10 +2545,12 @@ ofp_to_string__(const struct ofp_header *oh, enum ofpraw raw, ofp_print_nxt_set_controller_id(string, ofpmsg_body(oh)); break; + case OFPTYPE_GET_ASYNC_REPLY: case OFPTYPE_SET_ASYNC_CONFIG: ofp_print_nxt_set_async_config(string, ofpmsg_body(oh)); break; - + case OFPTYPE_GET_ASYNC_REQUEST: + break; case OFPTYPE_FLOW_MONITOR_CANCEL: ofp_print_nxt_flow_monitor_cancel(string, msg); break; -- 2.20.1