/* Current table statistics reply */
struct ofp_table_stats_reply {
struct ofp_header header;
- struct ofp_table_stats tables[]; /* The number of entries is inferred from
+ struct ofp_table_stats tables[0]; /* The number of entries is inferred from
the length field in the header. */
};
/* Current port statistics reply */
struct ofp_port_stats_reply {
struct ofp_header header;
- struct ofp_port_stats ports[]; /* The number of entries is inferred from
+ struct ofp_port_stats ports[0]; /* The number of entries is inferred from
the length field in the header. */
};