summaryrefslogtreecommitdiff
path: root/ofproto/netflow.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2015-07-22 12:16:42 -0700
committerBen Pfaff <blp@nicira.com>2015-07-23 15:48:51 -0700
commit44dbb3e4bd085588a1ebc70d9a25d2ed6b63e18b (patch)
treea3a5824b26c3c1d879ba17b90b0d83edaf192ab2 /ofproto/netflow.h
parentd33340a56b2dbeff00a2503e5d3afb11c226e6b4 (diff)
downloadopenvswitch-44dbb3e4bd085588a1ebc70d9a25d2ed6b63e18b.tar.gz
netflow: Mark some function parameters 'const'.
Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Jarno Rajahalme <jrajahalme@nicira.com>
Diffstat (limited to 'ofproto/netflow.h')
-rw-r--r--ofproto/netflow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ofproto/netflow.h b/ofproto/netflow.h
index 94dd3ff19..688a35d5c 100644
--- a/ofproto/netflow.h
+++ b/ofproto/netflow.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2008, 2009, 2010, 2011, 2013, 2014 Nicira, Inc.
+ * Copyright (c) 2008, 2009, 2010, 2011, 2013, 2014, 2015 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -50,9 +50,9 @@ int netflow_set_options(struct netflow *, const struct netflow_options *);
void netflow_run(struct netflow *);
void netflow_wait(struct netflow *);
-void netflow_mask_wc(struct flow *, struct flow_wildcards *);
+void netflow_mask_wc(const struct flow *, struct flow_wildcards *);
-void netflow_flow_clear(struct netflow *netflow, struct flow *flow);
+void netflow_flow_clear(struct netflow *, const struct flow *);
void netflow_flow_update(struct netflow *nf, const struct flow *flow,
ofp_port_t output_iface,