X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fofp-print.c;fp=lib%2Fofp-print.c;h=1eaaa27d8f757bfd3aabd98a5433f96470d5eab0;hb=eedc0097f475a15297375a2aba39313c0f98f330;hp=569a70aba5a53b72555ea9894147c162e986aa05;hpb=9ebc44ae8c5940513a8dcc2aab8dcca8aff9d2a2;p=sliver-openvswitch.git diff --git a/lib/ofp-print.c b/lib/ofp-print.c index 569a70aba..1eaaa27d8 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -205,6 +205,17 @@ ofp_print_nx_action(struct ds *string, const struct nx_action_header *nah) ds_put_cstr(string, "drop_spoofed_arp"); break; + case NXAST_SET_QUEUE: { + const struct nx_action_set_queue *nasq = + (struct nx_action_set_queue *)nah; + ds_put_format(string, "set_queue:%u", ntohl(nasq->queue_id)); + break; + } + + case NXAST_POP_QUEUE: + ds_put_cstr(string, "pop_queue"); + break; + default: ds_put_format(string, "***unknown Nicira action:%d***", ntohs(nah->subtype));