]> git.proxmox.com Git - mirror_ovs.git/blame - lib/learn.h
ovsdb-idl: Fix iteration over tracked rows with no actual data.
[mirror_ovs.git] / lib / learn.h
CommitLineData
75a75043 1/*
50f96b10 2 * Copyright (c) 2011, 2012, 2013, 2014, 2017 Nicira, Inc.
75a75043
BP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef LEARN_H
18#define LEARN_H 1
19
bdda5aca 20#include "compiler.h"
e03c096d 21#include "openvswitch/ofp-errors.h"
90bf1e07 22
75a75043
BP
23struct ds;
24struct flow;
bcd2633a 25struct flow_wildcards;
67210a55 26struct match;
75a75043 27struct ofpbuf;
f25d0cf3 28struct ofpact_learn;
75a75043 29struct ofputil_flow_mod;
50f96b10 30struct ofputil_port_map;
4bc938cc 31struct ofputil_table_map;
75a75043
BP
32struct nx_action_learn;
33
34/* NXAST_LEARN helper functions.
35 *
0da61033 36 * See lib/ofp-actions.c for NXAST_LEARN specification.
75a75043
BP
37 */
38
67210a55 39enum ofperr learn_check(const struct ofpact_learn *, const struct match *);
f25d0cf3
BP
40void learn_execute(const struct ofpact_learn *, const struct flow *,
41 struct ofputil_flow_mod *, struct ofpbuf *ofpacts);
bcd2633a 42void learn_mask(const struct ofpact_learn *, struct flow_wildcards *);
f25d0cf3 43
50f96b10 44char *learn_parse(char *, const struct ofputil_port_map *,
4bc938cc 45 const struct ofputil_table_map *, struct ofpbuf *ofpacts)
50f96b10
BP
46 OVS_WARN_UNUSED_RESULT;
47void learn_format(const struct ofpact_learn *,
4bc938cc
BP
48 const struct ofputil_port_map *,
49 const struct ofputil_table_map *, struct ds *);
75a75043
BP
50
51#endif /* learn.h */