packet-openflow.c:577:31: error: "/*" within comment
packet-openflow.c:655:24: error: "/*" within comment
cc1: warnings being treated as errors
packet-openflow.c: In function 'dissect_openflow_features_reply_v1_3':
packet-openflow.c:671: warning: unused parameter 'pinfo'
packet-openflow.c:671: warning: unused parameter 'length'
packet-openflow.c: In function 'dissect_openflow_multipart_request_v1_3':
packet-openflow.c:809: warning: unused parameter 'pinfo'
packet-openflow.c:809: warning: unused parameter 'length'
packet-openflow.c: At top level:
packet-openflow.c:1033: warning: return type defaults to 'int'
packet-openflow.c:1119: warning: return type defaults to 'int'

svn path=/trunk/; revision=52226
This commit is contained in:
Anders Broman 2013-09-26 21:21:54 +00:00
parent 408ba7bade
commit 1662d89793
1 changed files with 6 additions and 4 deletions

View File

@ -574,7 +574,7 @@ uint8_t pad[3]; * Align to 64-bits. *
uint32_t capabilities; * Bitmap of support "ofp_capabilities". * uint32_t capabilities; * Bitmap of support "ofp_capabilities". *
uint32_t actions; * Bitmap of supported "ofp_action_type"s. * uint32_t actions; * Bitmap of supported "ofp_action_type"s. *
* Port info.* * Port info.*
struct ofp_phy_port ports[0]; /* Port definitions. The number of ports struct ofp_phy_port ports[0]; / Port definitions. The number of ports
is inferred from the length field in is inferred from the length field in
the header. the header.
*/ */
@ -652,7 +652,7 @@ dissect_openflow_features_reply_v1_0(tvbuff_t *tvb, packet_info *pinfo, proto_tr
/* Switch features. / /* Switch features. /
struct ofp_switch_features { struct ofp_switch_features {
struct ofp_header header; struct ofp_header header;
uint64_t datapath_id; /* Datapath unique ID. The lower 48-bits are for uint64_t datapath_id; / Datapath unique ID. The lower 48-bits are for
a MAC address, while the upper 16-bits are a MAC address, while the upper 16-bits are
implementer-defined. / implementer-defined. /
uint32_t n_buffers; / Max packets buffered at once. / uint32_t n_buffers; / Max packets buffered at once. /
@ -668,7 +668,7 @@ OFP_ASSERT(sizeof(struct ofp_switch_features) == 32);
static void static void
dissect_openflow_features_reply_v1_3(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, guint16 length) dissect_openflow_features_reply_v1_3(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int offset, guint16 length _U_)
{ {
proto_item *ti; proto_item *ti;
proto_tree *path_id_tree, *cap_tree; proto_tree *path_id_tree, *cap_tree;
@ -806,7 +806,7 @@ uint8_t body[0]; / Body of the request. /
}; };
*/ */
static void static void
dissect_openflow_multipart_request_v1_3(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, guint16 length) dissect_openflow_multipart_request_v1_3(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree, int offset, guint16 length _U_)
{ {
/* type */ /* type */
@ -1029,6 +1029,7 @@ dissect_openflow_flow_mod(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, i
#endif #endif
} }
static int
dissect_openflow_v_1_0(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_) dissect_openflow_v_1_0(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{ {
proto_item *ti; proto_item *ti;
@ -1115,6 +1116,7 @@ dissect_openflow_v_1_0(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void
} }
static int
dissect_openflow_v_1_3(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_) dissect_openflow_v_1_3(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{ {
proto_item *ti; proto_item *ti;