FD.io VPP  v17.07.01-10-g3be13f0
Vector Packet Processing
interface_dpo.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
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  * @brief
17  * The data-path object representing interfaceing the packet, i.e. it's for-us
18  */
19 
20 #ifndef __INTERFACE_DPO_H__
21 #define __INTERFACE_DPO_H__
22 
23 #include <vnet/dpo/dpo.h>
24 
25 typedef struct interface_dpo_t_
26 {
27  /**
28  * The Software interface index that the packets will be given
29  * as the ingress/rx interface
30  */
32 
33  /**
34  * next VLIB node. A '<proto>-input' node.
35  */
37 
38  /**
39  * DPO protocol that the packets will have as they 'ingress'
40  * on this interface
41  */
43 
44  /**
45  * number of locks.
46  */
49 
50 extern void interface_dpo_add_or_lock (dpo_proto_t proto,
51  u32 sw_if_index,
52  dpo_id_t *dpo);
53 
54 extern void interface_dpo_module_init(void);
55 
56 /**
57  * @brief pool of all interface DPOs
58  */
60 
61 static inline interface_dpo_t *
63 {
64  return (pool_elt_at_index(interface_dpo_pool, index));
65 }
66 
67 #endif
u16 ido_locks
number of locks.
Definition: interface_dpo.h:47
static interface_dpo_t * interface_dpo_get(index_t index)
Definition: interface_dpo.h:62
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
void interface_dpo_add_or_lock(dpo_proto_t proto, u32 sw_if_index, dpo_id_t *dpo)
Definition: interface_dpo.c:82
The data-path object representing interfaceing the packet, i.e.
Definition: interface_dpo.h:25
u32 ido_next_node
next VLIB node.
Definition: interface_dpo.h:36
enum dpo_proto_t_ dpo_proto_t
Data path protocol.
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:152
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:397
void interface_dpo_module_init(void)
dpo_proto_t ido_proto
DPO protocol that the packets will have as they &#39;ingress&#39; on this interface.
Definition: interface_dpo.h:42
struct interface_dpo_t_ interface_dpo_t
The data-path object representing interfaceing the packet, i.e.
unsigned int u32
Definition: types.h:88
unsigned short u16
Definition: types.h:57
u32 ido_sw_if_index
The Software interface index that the packets will be given as the ingress/rx interface.
Definition: interface_dpo.h:31
interface_dpo_t * interface_dpo_pool
pool of all interface DPOs
Definition: interface_dpo.h:59