ofp-util: Improve return type of ofputil_decode_packet_in().
authorBen Pfaff <blp@nicira.com>
Thu, 7 Jun 2012 03:13:49 +0000 (23:13 -0400)
committerBen Pfaff <blp@nicira.com>
Wed, 13 Jun 2012 04:19:35 +0000 (21:19 -0700)
"enum ofperr" is clearer than "int".

Reviewed-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Ben Pfaff <blp@nicira.com>
lib/ofp-util.c
lib/ofp-util.h

index 07f885d..6d820b2 100644 (file)
@@ -2318,7 +2318,7 @@ ofputil_encode_flow_removed(const struct ofputil_flow_removed *fr,
     return msg;
 }
 
-int
+enum ofperr
 ofputil_decode_packet_in(struct ofputil_packet_in *pin,
                          const struct ofp_header *oh)
 {
index 6b3128a..aaab83c 100644 (file)
@@ -334,8 +334,8 @@ struct ofputil_packet_in {
     struct flow_metadata fmd;   /* Metadata at creation time. */
 };
 
-int ofputil_decode_packet_in(struct ofputil_packet_in *,
-                             const struct ofp_header *);
+enum ofperr ofputil_decode_packet_in(struct ofputil_packet_in *,
+                                     const struct ofp_header *);
 struct ofpbuf *ofputil_encode_packet_in(const struct ofputil_packet_in *,
                                         enum nx_packet_in_format);