鸿蒙研究站
|
官方文档
|
源码分析
== 鸿蒙内核参考手册 ==
内核注释
|
论坛
|
赞助作者
更新日期: 2022/06/01 来源: https://gitee.com/weharmony/kernel_liteos_a_note
函数
dhcp.h 文件参考
浏览源代码.
函数
err_t
dhcp_is_bound
(struct netif *netif)
函数说明
◆
dhcp_is_bound()
err_t dhcp_is_bound
(
struct netif *
netif
)
在文件
fixme.c
第
82
行定义.
83
{
84
struct
dhcp *dhcp = NULL;
85
86
LWIP_ERROR(
"netif != NULL"
, (netif != NULL),
return
ERR_ARG);
87
88
dhcp = netif_dhcp_data(netif);
89
LWIP_ERROR(
"netif->dhcp != NULL"
, (dhcp != NULL),
return
ERR_ARG);
90
91
if
(dhcp->state == DHCP_STATE_BOUND) {
92
return
ERR_OK;
93
}
else
{
94
return
ERR_INPROGRESS;
95
}
96
}
net
lwip-2.1
porting
include
lwip
dhcp.h
公众号:鸿蒙研究站(weharmonyos)
|
论坛: bbs.weharmonyos.com
| 制作者
鸿蒙研究站 | weharmonyos.com