2007-09-17 01:46:25 +08:00
|
|
|
/****************************************************************************
|
2014-06-27 23:56:45 +08:00
|
|
|
* net/netdev/netdev_findbyname.c
|
2007-09-17 01:46:25 +08:00
|
|
|
*
|
2021-02-19 19:45:37 +08:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-09-17 01:46:25 +08:00
|
|
|
*
|
2021-02-19 19:45:37 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-09-17 01:46:25 +08:00
|
|
|
*
|
2021-02-19 19:45:37 +08:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-09-17 01:46:25 +08:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2007-09-17 06:12:04 +08:00
|
|
|
#include <string.h>
|
2007-09-17 01:46:25 +08:00
|
|
|
#include <errno.h>
|
|
|
|
|
2014-06-24 23:28:44 +08:00
|
|
|
#include <nuttx/net/netdev.h>
|
2007-09-17 01:46:25 +08:00
|
|
|
|
2015-05-31 22:34:03 +08:00
|
|
|
#include "utils/utils.h"
|
2014-06-27 23:56:45 +08:00
|
|
|
#include "netdev/netdev.h"
|
2007-09-17 01:46:25 +08:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-20 06:02:56 +08:00
|
|
|
* Public Functions
|
2007-09-17 01:46:25 +08:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-22 06:33:14 +08:00
|
|
|
* Name: netdev_findbyname
|
2007-09-17 01:46:25 +08:00
|
|
|
*
|
|
|
|
* Description:
|
2007-11-22 22:42:52 +08:00
|
|
|
* Find a previously registered network device using its assigned
|
|
|
|
* network interface name
|
2007-09-17 01:46:25 +08:00
|
|
|
*
|
2018-03-13 23:52:27 +08:00
|
|
|
* Input Parameters:
|
2007-09-17 01:46:25 +08:00
|
|
|
* ifname The interface name of the device of interest
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Pointer to driver on success; null on failure
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-30 01:01:03 +08:00
|
|
|
FAR struct net_driver_s *netdev_findbyname(FAR const char *ifname)
|
2007-09-17 01:46:25 +08:00
|
|
|
{
|
2015-05-30 01:01:03 +08:00
|
|
|
FAR struct net_driver_s *dev;
|
2015-05-31 22:34:03 +08:00
|
|
|
|
2007-09-17 01:46:25 +08:00
|
|
|
if (ifname)
|
|
|
|
{
|
2016-12-04 06:28:19 +08:00
|
|
|
net_lock();
|
2007-09-17 01:46:25 +08:00
|
|
|
for (dev = g_netdevices; dev; dev = dev->flink)
|
|
|
|
{
|
|
|
|
if (strcmp(ifname, dev->d_ifname) == 0)
|
|
|
|
{
|
2016-12-04 06:28:19 +08:00
|
|
|
net_unlock();
|
2007-09-17 01:46:25 +08:00
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
}
|
2014-11-22 04:14:39 +08:00
|
|
|
|
2016-12-04 06:28:19 +08:00
|
|
|
net_unlock();
|
2007-09-17 01:46:25 +08:00
|
|
|
}
|
2014-11-22 04:14:39 +08:00
|
|
|
|
2007-09-17 01:46:25 +08:00
|
|
|
return NULL;
|
|
|
|
}
|