ofp-actions: Switch away from odd use of "q" in "enqueue" action format.
authorBen Pfaff <blp@nicira.com>
Mon, 6 May 2013 17:55:06 +0000 (10:55 -0700)
committerBen Pfaff <blp@nicira.com>
Mon, 11 Nov 2013 18:58:10 +0000 (10:58 -0800)
commitb55f2f799b6340a89fd282ac28f6eff8d8492bf5
tree03a9a89f8d7239460e8e56ede922cf4ab93eb2c0
parentaee0979b2c578f4c8a130f4cd5bf2c6ce4949431
ofp-actions: Switch away from odd use of "q" in "enqueue" action format.

The formatting of the "enqueue" action uses a "q" to separate the port
number from the queue number, as in "enqueue:123q456".  This is different
from every other action.  This commit improves the situation by:

    * Switching the formatting to use a colon (e.g. "enqueue:123:456"),
      which is a little less odd-looking but still accepted by older
      versions of Open vSwitch.

    * Improving the parser to accept "enqueue(123,456)" also.

Signed-off-by: Ben Pfaff <blp@nicira.com>
lib/ofp-actions.c
lib/ofp-parse.c
tests/ofp-actions.at
utilities/ovs-ofctl.8.in