Steve Shin | 99a0e60 | 2017-07-01 04:16:20 +0000 | [diff] [blame] | 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 | { |
| 24 | lldp_ok, |
| 25 | lldp_not_supported, |
| 26 | lldp_invalid_arg, |
| 27 | } lldp_cfg_err_t; |
| 28 | |
Steve Shin | 9a6fcef | 2017-10-11 13:55:16 -0700 | [diff] [blame] | 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); |
Steve Shin | 99a0e60 | 2017-07-01 04:16:20 +0000 | [diff] [blame] | 31 | lldp_cfg_err_t lldp_cfg_set (u8 ** host, int hold_time, int tx_interval); |
| 32 | |
Steve Shin | 9a6fcef | 2017-10-11 13:55:16 -0700 | [diff] [blame] | 33 | |
Steve Shin | 99a0e60 | 2017-07-01 04:16:20 +0000 | [diff] [blame] | 34 | #endif /* __included_lldp_h__ */ |