1、解决do_pollfd函数中处理底层网络设备返回错误-1的情况,返回-1时select函数也要返回-1 …

2、网卡设备调用关闭dhcp时,底层要调用dhcp_stop函数来关闭dhcp功能,打开时再调用dhcp_start,否则再次打开dhcp时无法获取ip地址或者出现在使用静态ip地址会在dhcp租约到期时自动再获取ip地址。
3、sal_socket.c程序中的sal_accept函数增加判断网卡up,down的功能
4、修改注释信息
This commit is contained in:
longtengmcu
2020-05-21 22:05:38 +08:00
parent 63950c9259
commit d75f03e4b0
3 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -138,7 +138,7 @@ static int do_pollfd(struct pollfd *pollfd, rt_pollreq_t *req)
mask = f->fops->poll(f, req);
/* dealwith the device return error -1 zhaoshimin 20200509*/
/* dealwith the device return error -1*/
if (mask < 0)
{
fd_put(f);
@@ -180,7 +180,7 @@ static int poll_do(struct pollfd *fds, nfds_t nfds, struct rt_poll_table *pt, in
ret = do_pollfd(pf, &pt->req);
if(ret < 0)
{
/*dealwith the device return error -1 zhaoshimin 20200509*/
/*dealwith the device return error -1 */
pt->req._proc = RT_NULL;
return ret;
}