X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ofproto%2Fnetflow.h;h=c7f2574b85240ad5b43073a98aa778eb6a3ba50d;hb=f1c8a79c626f383926b70eb1885c40f8a427ba23;hp=7e6debcd20fa9e03e78c9f5dcc61d499b553505e;hpb=4e022ec09e14ac89add74c1b4b8e3ff3873edbf0;p=sliver-openvswitch.git diff --git a/ofproto/netflow.h b/ofproto/netflow.h index 7e6debcd2..c7f2574b8 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_wildcards *); +void netflow_mask_wc(struct flow *, struct flow_wildcards *); + +void netflow_flow_clear(struct netflow *netflow, struct flow *flow); -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_update(struct netflow *nf, struct flow *flow, + ofp_port_t output_iface, + const struct dpif_flow_stats *); #endif /* netflow.h */