FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
lldp.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 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 LLDP external definition
18  */
19 #ifndef __included_lldp_h__
20 #define __included_lldp_h__
21 
22 typedef enum lldp_cfg_err
23 {
28 
29 lldp_cfg_err_t lldp_cfg_intf_set (u32 hw_if_index, u8 ** port_desc,
30  u8 **mgmt_ip4, u8 **mgmt_ip6, u8 **mgmt_oid, int enable);
31 lldp_cfg_err_t lldp_cfg_set (u8 ** host, int hold_time, int tx_interval);
32 
33 
34 #endif /* __included_lldp_h__ */
Definition: lldp.h:24
enum lldp_cfg_err lldp_cfg_err_t
lldp_cfg_err_t lldp_cfg_intf_set(u32 hw_if_index, u8 **port_desc, u8 **mgmt_ip4, u8 **mgmt_ip6, u8 **mgmt_oid, int enable)
Definition: lldp_cli.c:46
unsigned char u8
Definition: types.h:56
unsigned int u32
Definition: types.h:88
lldp_cfg_err
Definition: lldp.h:22
lldp_cfg_err_t lldp_cfg_set(u8 **host, int hold_time, int tx_interval)
Definition: lldp_cli.c:170