summaryrefslogtreecommitdiff
path: root/ovn/controller/ofctrl.h
blob: 49b95b0fd4b3c793e1e95fcb042287c13892874a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* Copyright (c) 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.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */


#ifndef OFCTRL_H
#define OFCTRL_H 1

#include <stdint.h>

#include "openvswitch/meta-flow.h"
#include "ovsdb-idl.h"

struct controller_ctx;
struct hmap;
struct match;
struct ofpbuf;
struct ovsrec_bridge;
struct group_table;

/* Interface for OVN main loop. */
void ofctrl_init(void);
enum mf_field_id ofctrl_run(const struct ovsrec_bridge *br_int);
void ofctrl_put(struct group_table *group_table);
void ofctrl_wait(void);
void ofctrl_destroy(void);

struct ovn_flow *ofctrl_dup_flow(struct ovn_flow *source);

/* Flow table interfaces to the rest of ovn-controller. */
void ofctrl_add_flow(uint8_t table_id, uint16_t priority,
                     const struct match *, const struct ofpbuf *ofpacts,
                     const struct uuid *uuid);

void ofctrl_remove_flows(const struct uuid *uuid);

void ofctrl_set_flow(uint8_t table_id, uint16_t priority,
                     const struct match *, const struct ofpbuf *ofpacts,
                     const struct uuid *uuid);

void ofctrl_flow_table_clear(void);

void ovn_flow_table_clear(void);

#endif /* ovn/ofctrl.h */