]> git.proxmox.com Git - mirror_ovs.git/blame - ovn/controller/ofctrl.h
rhel: Improved Systemd Integration
[mirror_ovs.git] / ovn / controller / ofctrl.h
CommitLineData
fa183acc 1/* Copyright (c) 2015, 2016 Nicira, Inc.
b4e87a48
BP
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
064d7f84 22#include "openvswitch/meta-flow.h"
fdbdb595 23#include "ovsdb-idl.h"
1b05a9d3 24
b4e87a48 25struct controller_ctx;
761fd08f 26struct hmap;
b4e87a48
BP
27struct match;
28struct ofpbuf;
422a9f73 29struct ovsrec_bridge;
467085fd 30struct group_table;
b4e87a48
BP
31
32/* Interface for OVN main loop. */
33void ofctrl_init(void);
1b05a9d3 34enum mf_field_id ofctrl_run(const struct ovsrec_bridge *br_int);
fa183acc 35void ofctrl_put(struct group_table *group_table, int64_t nb_cfg);
b4e87a48
BP
36void ofctrl_wait(void);
37void ofctrl_destroy(void);
fa183acc 38int64_t ofctrl_get_cur_cfg(void);
b4e87a48 39
fdbdb595
RM
40struct ovn_flow *ofctrl_dup_flow(struct ovn_flow *source);
41
42/* Flow table interfaces to the rest of ovn-controller. */
43void ofctrl_add_flow(uint8_t table_id, uint16_t priority,
44 const struct match *, const struct ofpbuf *ofpacts,
45 const struct uuid *uuid);
46
47void ofctrl_remove_flows(const struct uuid *uuid);
48
49void ofctrl_set_flow(uint8_t table_id, uint16_t priority,
50 const struct match *, const struct ofpbuf *ofpacts,
51 const struct uuid *uuid);
52
53void ofctrl_flow_table_clear(void);
54
55void ovn_flow_table_clear(void);
b4e87a48
BP
56
57#endif /* ovn/ofctrl.h */