Initial implementation of sFlow.
[sliver-openvswitch.git] / ofproto / ofproto-sflow.h
1 /*
2  * Copyright (c) 2009 InMon Corp.
3  * Copyright (c) 2009 Nicira Networks.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #ifndef OFPROTO_SFLOW_H
19 #define OFPROTO_SFLOW_H 1
20
21 #include <stdint.h>
22 #include "svec.h"
23
24 struct dpif;
25 struct odp_msg;
26 struct ofproto_sflow_options;
27
28 struct ofproto_sflow *ofproto_sflow_create(struct dpif *);
29 void ofproto_sflow_destroy(struct ofproto_sflow *);
30 void ofproto_sflow_set_options(struct ofproto_sflow *,
31                                const struct ofproto_sflow_options *);
32 void ofproto_sflow_clear(struct ofproto_sflow *);
33 bool ofproto_sflow_is_enabled(const struct ofproto_sflow *);
34
35 void ofproto_sflow_add_port(struct ofproto_sflow *, uint16_t odp_port,
36                             const char *netdev_name);
37 void ofproto_sflow_del_port(struct ofproto_sflow *, uint16_t odp_port);
38 void ofproto_sflow_set_group_sizes(struct ofproto_sflow *,
39                                    size_t n_flood, size_t n_all);
40
41 void ofproto_sflow_run(struct ofproto_sflow *);
42 void ofproto_sflow_wait(struct ofproto_sflow *);
43
44 void ofproto_sflow_received(struct ofproto_sflow *, struct odp_msg *);
45
46 #endif /* ofproto/ofproto-sflow.h */