diff options
author | Ben Pfaff <blp@ovn.org> | 2018-06-15 17:06:56 -0700 |
---|---|---|
committer | Ben Pfaff <blp@ovn.org> | 2018-06-18 15:25:44 -0700 |
commit | fe2c69f49cb3cb0ab2cc2ae84b364970f5e77392 (patch) | |
tree | d2f803e322099a4d8e754b3d36ce43cc4c94007d /include/openvswitch/ofp-ipfix.h | |
parent | 16ee87263e31dc6520937a0dcefd676f3582d8ee (diff) | |
download | openvswitch-fe2c69f49cb3cb0ab2cc2ae84b364970f5e77392.tar.gz |
ofp-print: Move significant formatting code into more specific .c files.
Signed-off-by: Ben Pfaff <blp@ovn.org>
Acked-by: Justin Pettit <jpettit@ovn.org>
Diffstat (limited to 'include/openvswitch/ofp-ipfix.h')
-rw-r--r-- | include/openvswitch/ofp-ipfix.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/openvswitch/ofp-ipfix.h b/include/openvswitch/ofp-ipfix.h index 75eefc005..34ff2b9b2 100644 --- a/include/openvswitch/ofp-ipfix.h +++ b/include/openvswitch/ofp-ipfix.h @@ -19,6 +19,7 @@ #include "openflow/openflow.h" +struct ds; struct ofpbuf; struct ovs_list; @@ -44,6 +45,10 @@ void ofputil_append_ipfix_stat(struct ovs_list *replies, const struct ofputil_ipfix_stats *); size_t ofputil_count_ipfix_stats(const struct ofp_header *); int ofputil_pull_ipfix_stats(struct ofputil_ipfix_stats *, struct ofpbuf *msg); +void ofputil_format_ipfix_stats_bridge(struct ds *, + const struct ofputil_ipfix_stats *); +void ofputil_format_ipfix_stats_flow(struct ds *, + const struct ofputil_ipfix_stats *); #ifdef __cplusplus } |