bf5dfd5c8dc19fdab7851b732aa8d52b0ced015c
[cascardo/ovs.git] / ovn / controller / ofctrl.h
1 /* Copyright (c) 2015 Nicira, Inc.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16
17 #ifndef OFCTRL_H
18 #define OFCTRL_H 1
19
20 #include <stdint.h>
21
22 #include "openvswitch/meta-flow.h"
23
24 struct controller_ctx;
25 struct hmap;
26 struct match;
27 struct ofpbuf;
28 struct ovsrec_bridge;
29 struct group_table;
30
31 /* Interface for OVN main loop. */
32 void ofctrl_init(void);
33 enum mf_field_id ofctrl_run(const struct ovsrec_bridge *br_int);
34 void ofctrl_put(struct hmap *flows, struct group_table *group_table);
35 void ofctrl_wait(void);
36 void ofctrl_destroy(void);
37
38 /* Flow table interface to the rest of ovn-controller. */
39 void ofctrl_add_flow(struct hmap *flows, uint8_t table_id, uint16_t priority,
40                      const struct match *, const struct ofpbuf *ofpacts);
41
42 #endif /* ovn/ofctrl.h */