There are a couple of cases where OpenFlow 1.0 controllers that use Nicira extensions can get OFPBMC_BAD_FIELD, so we should have an error code for it in that protocol.
Reported-by: Soner Sevinc <[email protected]> Signed-off-by: Ben Pfaff <[email protected]> --- AUTHORS | 1 + lib/ofp-errors.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index ca33a7f..02bcd64 100644 --- a/AUTHORS +++ b/AUTHORS @@ -328,6 +328,7 @@ Sridhar Samudrala [email protected] Srini Seetharaman [email protected] Sabyasachi Sengupta [email protected] Salvatore Cambria [email protected] +Soner Sevinc [email protected] Stephen Hemminger [email protected] Suganya Ramachandran [email protected] Takayuki HAMA [email protected] diff --git a/lib/ofp-errors.h b/lib/ofp-errors.h index aff2075..e6c9211 100644 --- a/lib/ofp-errors.h +++ b/lib/ofp-errors.h @@ -329,7 +329,7 @@ enum ofperr { * match. */ OFPERR_OFPBMC_BAD_WILDCARDS, - /* OF1.1+(4,6). Unsupported field in the match. */ + /* NX1.0(0,263), OF1.1+(4,6). Unsupported field in the match. */ OFPERR_OFPBMC_BAD_FIELD, /* NX1.0(1,258), OF1.1+(4,7). Unsupported value in a match -- 1.7.10.4 _______________________________________________ dev mailing list [email protected] http://openvswitch.org/mailman/listinfo/dev
