tests: Add bundle action test with buffer realloc.
[cascardo/ovs.git] / ovn / controller-vtep / ovn-controller-vtep.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 OVN_CONTROLLER_VTEP_H
18 #define OVN_CONTROLLER_VTEP_H 1
19
20 #include "ovn/lib/ovn-sb-idl.h"
21
22 struct ovsdb_idl;
23 struct ovsdb_idl_txn;
24
25 struct controller_vtep_ctx {
26     struct ovsdb_idl *ovnsb_idl;
27     struct ovsdb_idl_txn *ovnsb_idl_txn;
28
29     struct ovsdb_idl *vtep_idl;
30     struct ovsdb_idl_txn *vtep_idl_txn;
31 };
32
33 /* VTEP needs what VTEP needs. */
34 #define OVN_SB_ENCAP_TYPE "vxlan"
35 #define VTEP_ENCAP_TYPE "vxlan_over_ipv4"
36
37 static inline const struct sbrec_chassis *
38 get_chassis_by_name(struct ovsdb_idl *ovnsb_idl, const char *chassis_id)
39 {
40     const struct sbrec_chassis *chassis_rec;
41
42     SBREC_CHASSIS_FOR_EACH(chassis_rec, ovnsb_idl) {
43         if (!strcmp(chassis_rec->name, chassis_id)) {
44             break;
45         }
46     }
47
48     return chassis_rec;
49 }
50
51 #endif /* ovn/ovn-controller-vtep.h */