FD.io VPP  v17.01.1-3-gc6833f8
Vector Packet Processing
bfd_udp.h
Go to the documentation of this file.
1 /* * Copyright (c) 2011-2016 Cisco and/or its affiliates.
2  * Licensed under the Apache License, Version 2.0 (the "License");
3  * you may not use this file except in compliance with the License.
4  * You may obtain a copy of the License at:
5  *
6  * http://www.apache.org/licenses/LICENSE-2.0
7  *
8  * Unless required by applicable law or agreed to in writing, software
9  * distributed under the License is distributed on an "AS IS" BASIS,
10  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11  * See the License for the specific language governing permissions and
12  * limitations under the License.
13  */
14 /**
15  * @file
16  * @brief BFD global declarations
17  */
18 
19 #ifndef __included_bfd_udp_h__
20 #define __included_bfd_udp_h__
21 
22 #include <vppinfra/clib.h>
23 #include <vnet/adj/adj_types.h>
24 #include <vnet/ip/ip6_packet.h>
25 
26 #define BFD_UDP_KEY_BODY
27 
28 /* *INDENT-OFF* */
29 typedef CLIB_PACKED (struct {
30 
31  u32 sw_if_index;
32  ip46_address_t local_addr;
33  ip46_address_t peer_addr;
34 
35 }) bfd_udp_key_t;
36 /* *INDENT-ON* */
37 
38 typedef struct
39 {
40  bfd_udp_key_t key;
41 
44 
46  bfd_udp_session_t * bs);
47 
48 #endif /* __included_bfd_udp_h__ */
49 
50 /*
51  * fd.io coding-style-patch-verification: ON
52  *
53  * Local Variables:
54  * eval: (c-set-style "gnu")
55  * End:
56  */
typedef CLIB_PACKED(struct{u32 sw_if_index;ip46_address_t local_addr;ip46_address_t peer_addr;}) bfd_udp_key_t
void bfd_add_udp_transport(vlib_main_t *vm, vlib_buffer_t *b, bfd_udp_session_t *bs)
Definition: bfd_udp.c:75
bfd_udp_key_t key
Definition: bfd_udp.h:40
u32 adj_index_t
An index for adjacencies.
Definition: adj_types.h:30
unsigned int u32
Definition: types.h:88
adj_index_t adj_index
Definition: bfd_udp.h:42