2007-09-16 17:46:25 +00:00
|
|
|
/****************************************************************************
|
2014-06-27 09:56:45 -06:00
|
|
|
* net/netdev/netdev_findbyname.c
|
2007-09-16 17:46:25 +00:00
|
|
|
*
|
2021-02-19 12:45:37 +01: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-16 17:46:25 +00:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-09-16 17:46:25 +00:00
|
|
|
*
|
2021-02-19 12:45:37 +01: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-16 17:46:25 +00:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2007-09-16 22:12:04 +00:00
|
|
|
#include <string.h>
|
2007-09-16 17:46:25 +00:00
|
|
|
#include <errno.h>
|
|
|
|
|
2014-06-24 09:28:44 -06:00
|
|
|
#include <nuttx/net/netdev.h>
|
2007-09-16 17:46:25 +00:00
|
|
|
|
2015-05-31 08:34:03 -06:00
|
|
|
#include "utils/utils.h"
|
2014-06-27 09:56:45 -06:00
|
|
|
#include "netdev/netdev.h"
|
2007-09-16 17:46:25 +00:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-19 16:02:56 -06:00
|
|
|
* Public Functions
|
2007-09-16 17:46:25 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-21 16:33:14 -06:00
|
|
|
* Name: netdev_findbyname
|
2007-09-16 17:46:25 +00:00
|
|
|
*
|
|
|
|
* Description:
|
2007-11-22 14:42:52 +00:00
|
|
|
* Find a previously registered network device using its assigned
|
|
|
|
* network interface name
|
2007-09-16 17:46:25 +00:00
|
|
|
*
|
2018-03-13 09:52:27 -06:00
|
|
|
* Input Parameters:
|
2007-09-16 17:46:25 +00:00
|
|
|
* ifname The interface name of the device of interest
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Pointer to driver on success; null on failure
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-29 11:01:03 -06:00
|
|
|
FAR struct net_driver_s *netdev_findbyname(FAR const char *ifname)
|
2007-09-16 17:46:25 +00:00
|
|
|
{
|
2015-05-29 11:01:03 -06:00
|
|
|
FAR struct net_driver_s *dev;
|
2015-05-31 08:34:03 -06:00
|
|
|
|
2007-09-16 17:46:25 +00:00
|
|
|
if (ifname)
|
|
|
|
{
|
2016-12-03 16:28:19 -06:00
|
|
|
net_lock();
|
2007-09-16 17:46:25 +00:00
|
|
|
for (dev = g_netdevices; dev; dev = dev->flink)
|
|
|
|
{
|
|
|
|
if (strcmp(ifname, dev->d_ifname) == 0)
|
|
|
|
{
|
2016-12-03 16:28:19 -06:00
|
|
|
net_unlock();
|
2007-09-16 17:46:25 +00:00
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
}
|
2014-11-21 14:14:39 -06:00
|
|
|
|
2016-12-03 16:28:19 -06:00
|
|
|
net_unlock();
|
2007-09-16 17:46:25 +00:00
|
|
|
}
|
2014-11-21 14:14:39 -06:00
|
|
|
|
2007-09-16 17:46:25 +00:00
|
|
|
return NULL;
|
|
|
|
}
|