ovn-sbctl: Add multiple encaps with "chassis-add".
[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 "meta-flow.h"
23
24 struct controller_ctx;
25 struct hmap;
26 struct match;
27 struct ofpbuf;
28 struct ovsrec_bridge;
29
30 /* Interface for OVN main loop. */
31 void ofctrl_init(void);
32 enum mf_field_id ofctrl_run(const struct ovsrec_bridge *br_int);
33 void ofctrl_put(struct hmap *flows);
34 void ofctrl_wait(void);
35 void ofctrl_destroy(void);
36
37 /* Flow table interface to the rest of ovn-controller. */
38 void ofctrl_add_flow(struct hmap *flows, uint8_t table_id, uint16_t priority,
39                      const struct match *, const struct ofpbuf *ofpacts);
40
41 #endif /* ovn/ofctrl.h */