BFD: SHA1 authentication
[vpp.git] / src / vnet / bfd / bfd_api.h
1 /*
2  * Copyright (c) 2011-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  * @file
17  * @brief BFD global declarations
18  */
19 #ifndef __included_bfd_api_h__
20 #define __included_bfd_api_h__
21
22 #include <vnet/api_errno.h>
23 #include <vnet/vnet.h>
24 #include <vnet/ip/ip6_packet.h>
25 #include <vnet/bfd/bfd_udp.h>
26
27 vnet_api_error_t
28 bfd_udp_add_session (u32 sw_if_index, const ip46_address_t * local_addr,
29                      const ip46_address_t * peer_addr, u32 desired_min_tx_us,
30                      u32 required_min_rx_us, u8 detect_mult,
31                      u8 is_authenticated, u32 conf_key_id, u8 bfd_key_id);
32
33 vnet_api_error_t bfd_udp_del_session (u32 sw_if_index,
34                                       const ip46_address_t * local_addr,
35                                       const ip46_address_t * peer_addr);
36
37 vnet_api_error_t bfd_udp_session_set_flags (u32 sw_if_index,
38                                             const ip46_address_t * local_addr,
39                                             const ip46_address_t * peer_addr,
40                                             u8 admin_up_down);
41
42 vnet_api_error_t bfd_auth_set_key (u32 conf_key_id, u8 auth_type, u8 key_len,
43                                    const u8 * key);
44
45 vnet_api_error_t bfd_auth_del_key (u32 conf_key_id);
46
47 vnet_api_error_t bfd_udp_auth_activate (u32 sw_if_index,
48                                         const ip46_address_t * local_addr,
49                                         const ip46_address_t * peer_addr,
50                                         u32 conf_key_id, u8 bfd_key_id,
51                                         u8 is_delayed);
52
53 vnet_api_error_t bfd_udp_auth_deactivate (u32 sw_if_index,
54                                           const ip46_address_t * local_addr,
55                                           const ip46_address_t * peer_addr,
56                                           u8 is_delayed);
57
58 #endif /* __included_bfd_api_h__ */
59
60 /*
61  * fd.io coding-style-patch-verification: ON
62  *
63  * Local Variables:
64  * eval: (c-set-style "gnu")
65  * End:
66  */