X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fnetflow.h;h=e89b75e2c87ee57949009587695af0df6d4e72e6;hb=4465062f14d74dae8e030b9b6fd2d073cfdead65;hp=e2366f69f31066192878cc5d6e0cc8d2e0511b18;hpb=9b658910ab3c709f05f8d986f13aeae9bc53b233;p=sliver-openvswitch.git diff --git a/ofproto/netflow.h b/ofproto/netflow.h index e2366f69f..e89b75e2c 100644 --- a/ofproto/netflow.h +++ b/ofproto/netflow.h @@ -28,8 +28,6 @@ * accounted.) */ #define NF_ACTIVE_TIMEOUT_DEFAULT 600 -struct ofexpired; - struct netflow_options { struct sset collectors; uint8_t engine_type; @@ -42,33 +40,23 @@ struct netflow_options { #define NF_OUT_MULTI OFP_PORT_C(UINT16_MAX - 1) #define NF_OUT_DROP OFP_PORT_C(UINT16_MAX - 2) -struct netflow_flow { - long long int last_expired; /* Time this flow last timed out. */ - long long int created; /* Time flow was created since time out. */ - - uint64_t packet_count_off; /* Packet count at last time out. */ - uint64_t byte_count_off; /* Byte count at last time out. */ - - ofp_port_t output_iface; /* Output interface index. */ - uint8_t tcp_flags; /* Bitwise-OR of all TCP flags seen. */ -}; - struct netflow *netflow_create(void); -void netflow_destroy(struct netflow *); +struct netflow *netflow_ref(const struct netflow *); +void netflow_unref(struct netflow *); +bool netflow_exists(void); + int netflow_set_options(struct netflow *, const struct netflow_options *); -void netflow_expire(struct netflow *, struct netflow_flow *, - struct ofexpired *); +void netflow_expire(struct netflow *, struct flow *); -bool netflow_run(struct netflow *); +void netflow_run(struct netflow *); void netflow_wait(struct netflow *); void netflow_mask_wc(struct flow *, struct flow_wildcards *); -void netflow_flow_init(struct netflow_flow *); -void netflow_flow_clear(struct netflow_flow *); -void netflow_flow_update_time(struct netflow *, struct netflow_flow *, - long long int used); -void netflow_flow_update_flags(struct netflow_flow *, uint8_t tcp_flags); -bool netflow_active_timeout_expired(struct netflow *, struct netflow_flow *); +void netflow_flow_clear(struct netflow *netflow, struct flow *flow); + +void netflow_flow_update(struct netflow *nf, const struct flow *flow, + ofp_port_t output_iface, + const struct dpif_flow_stats *); #endif /* netflow.h */