blob: df03dcea6ce01caa8495449f13198533146b6436 [file] [log] [blame]
Steve Shin99a0e602017-07-01 04:16:20 +00001/*
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
22typedef enum lldp_cfg_err
23{
24 lldp_ok,
25 lldp_not_supported,
26 lldp_invalid_arg,
27} lldp_cfg_err_t;
28
Steve Shin9a6fcef2017-10-11 13:55:16 -070029lldp_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 Shin99a0e602017-07-01 04:16:20 +000031lldp_cfg_err_t lldp_cfg_set (u8 ** host, int hold_time, int tx_interval);
32
Steve Shin9a6fcef2017-10-11 13:55:16 -070033
Steve Shin99a0e602017-07-01 04:16:20 +000034#endif /* __included_lldp_h__ */