2007-09-17 00:12:04 +02:00
|
|
|
/****************************************************************************
|
2014-06-27 18:00:28 +02:00
|
|
|
* net/netdev/netdev.h
|
2007-09-17 00:12:04 +02:00
|
|
|
*
|
2015-05-31 16:34:03 +02:00
|
|
|
* Copyright (C) 2014-2015 Gregory Nutt. All rights reserved.
|
2012-09-13 20:32:24 +02:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2007-09-17 00:12:04 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-06-27 18:00:28 +02:00
|
|
|
#ifndef __NET_NETDEV_NETDEV_H
|
|
|
|
#define __NET_NETDEV_NETDEV_H
|
|
|
|
|
2007-09-17 00:12:04 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2014-06-27 18:00:28 +02:00
|
|
|
#include <sys/types.h>
|
2015-05-29 19:01:03 +02:00
|
|
|
#include <stdbool.h>
|
2007-09-17 00:12:04 +02:00
|
|
|
|
2014-07-05 03:13:08 +02:00
|
|
|
#include <nuttx/net/ip.h>
|
|
|
|
|
2018-06-25 20:08:10 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* If CONFIG_NETDEV_IFINDEX is enabled then there is limit to the number of
|
|
|
|
* devices that can be registered due to the nature of some static data.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define MAX_IFINDEX 32
|
|
|
|
|
2007-09-17 00:12:04 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-06-27 18:00:28 +02:00
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
2007-09-17 00:12:04 +02:00
|
|
|
|
2014-06-27 18:00:28 +02:00
|
|
|
#if CONFIG_NSOCKET_DESCRIPTORS > 0
|
2015-05-31 16:34:03 +02:00
|
|
|
/* List of registered Ethernet device drivers. You must have the network
|
|
|
|
* locked in order to access this list.
|
|
|
|
*
|
|
|
|
* NOTE that this duplicates a declaration in net/tcp/tcp.h
|
2015-05-30 17:12:27 +02:00
|
|
|
*/
|
|
|
|
|
2014-06-28 00:48:12 +02:00
|
|
|
EXTERN struct net_driver_s *g_netdevices;
|
2014-06-27 18:00:28 +02:00
|
|
|
#endif
|
2007-09-17 00:12:04 +02:00
|
|
|
|
2018-06-25 20:08:10 +02:00
|
|
|
#ifdef CONFIG_NETDEV_IFINDEX
|
|
|
|
/* The set of network devices that have been registered. This is used to
|
|
|
|
* assign a unique device index to the newly registered device.
|
|
|
|
*
|
|
|
|
* REVISIT: The width of g_nassigned limits the number of registered
|
|
|
|
* devices to 32 (MAX_IFINDEX).
|
|
|
|
*/
|
|
|
|
|
|
|
|
EXTERN uint32_t g_devset;
|
2018-06-25 20:57:42 +02:00
|
|
|
|
|
|
|
/* The set of network devices that have been freed. The purpose of this
|
|
|
|
* set is to postpone reuse of a interface index for as long as possible,
|
|
|
|
* i.e., don't reuse an interface index until all of the possible indices
|
|
|
|
* have been used.
|
|
|
|
*/
|
|
|
|
|
|
|
|
EXTERN uint32_t g_devfreed;
|
2018-06-25 20:08:10 +02:00
|
|
|
#endif
|
|
|
|
|
2017-07-01 16:39:39 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Callback from netdev_foreach() */
|
|
|
|
|
|
|
|
struct net_driver_s; /* Forward reference */
|
|
|
|
typedef int (*netdev_callback_t)(FAR struct net_driver_s *dev, FAR void *arg);
|
|
|
|
|
2007-09-17 00:12:04 +02:00
|
|
|
/****************************************************************************
|
2014-06-27 18:00:28 +02:00
|
|
|
* Public Function Prototypes
|
2007-09-17 00:12:04 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-27 22:34:15 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdev_ifup / netdev_ifdown
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Bring the interface up/down
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2015-02-03 22:40:56 +01:00
|
|
|
|
|
|
|
void netdev_ifup(FAR struct net_driver_s *dev);
|
|
|
|
void netdev_ifdown(FAR struct net_driver_s *dev);
|
|
|
|
|
2015-05-29 19:01:03 +02:00
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_verify
|
2015-05-29 19:01:03 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Verify that the specified device still exists
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* The caller has locked the network.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
bool netdev_verify(FAR struct net_driver_s *dev);
|
|
|
|
|
2015-05-27 22:34:15 +02:00
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_findbyname
|
2015-05-27 22:34:15 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Find a previously registered network device using its assigned
|
|
|
|
* network interface name
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2015-05-27 22:34:15 +02:00
|
|
|
* ifname The interface name of the device of interest
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Pointer to driver on success; null on failure
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2014-06-27 18:00:28 +02:00
|
|
|
|
|
|
|
#if CONFIG_NSOCKET_DESCRIPTORS > 0
|
2014-06-28 00:48:12 +02:00
|
|
|
FAR struct net_driver_s *netdev_findbyname(FAR const char *ifname);
|
2014-06-27 18:00:28 +02:00
|
|
|
#endif
|
|
|
|
|
2017-07-01 16:39:39 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdev_foreach
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Enumerate each registered network device.
|
|
|
|
*
|
|
|
|
* NOTE: netdev semaphore held throughout enumeration.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2017-07-01 16:39:39 +02:00
|
|
|
* callback - Will be called for each registered device
|
|
|
|
* arg - User argument passed to callback()
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0:Enumeration completed 1:Enumeration terminated early by callback
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
int netdev_foreach(netdev_callback_t callback, FAR void *arg);
|
|
|
|
|
2015-05-27 22:34:15 +02:00
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_findby_ipv4addr
|
2015-05-27 22:34:15 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Find a previously registered network device by matching an arbitrary
|
|
|
|
* IPv4 address.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2017-08-08 22:24:12 +02:00
|
|
|
* lipaddr - Local, bound address of a connection.
|
2015-05-27 22:34:15 +02:00
|
|
|
* ripaddr - Remote address of a connection to use in the lookup
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Pointer to driver on success; null on failure
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2014-06-27 18:00:28 +02:00
|
|
|
|
|
|
|
#if CONFIG_NSOCKET_DESCRIPTORS > 0
|
2015-01-16 15:51:18 +01:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
FAR struct net_driver_s *netdev_findby_ipv4addr(in_addr_t lipaddr,
|
|
|
|
in_addr_t ripaddr);
|
|
|
|
#endif
|
|
|
|
|
2015-05-27 22:34:15 +02:00
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_findby_ipv6addr
|
2015-05-27 22:34:15 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Find a previously registered network device by matching an arbitrary
|
|
|
|
* IPv6 address.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2017-08-08 22:24:12 +02:00
|
|
|
* lipaddr - Local, bound address of a connection.
|
2015-05-27 22:34:15 +02:00
|
|
|
* ripaddr - Remote address of a connection to use in the lookup
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Pointer to driver on success; null on failure
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-16 15:51:18 +01:00
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
FAR struct net_driver_s *netdev_findby_ipv6addr(const net_ipv6addr_t lipaddr,
|
|
|
|
const net_ipv6addr_t ripaddr);
|
2014-11-23 18:00:22 +01:00
|
|
|
#endif
|
2014-06-27 18:00:28 +02:00
|
|
|
#endif
|
|
|
|
|
2015-11-27 23:39:14 +01:00
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_findbyindex
|
2015-11-27 23:39:14 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2018-06-25 20:08:10 +02:00
|
|
|
* Find a previously registered network device by assigned interface index.
|
2015-11-27 23:39:14 +01:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2018-06-26 00:55:45 +02:00
|
|
|
* ifindex - The interface index. This is a one-based index and must be
|
|
|
|
* greater than zero.
|
2015-11-27 23:39:14 +01:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2018-06-25 20:08:10 +02:00
|
|
|
* Pointer to driver on success; NULL on failure. This function will return
|
|
|
|
* NULL only if there is no device corresponding to the provided index.
|
2015-11-27 23:39:14 +01:00
|
|
|
*
|
2018-06-25 20:08:10 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
FAR struct net_driver_s *netdev_findbyindex(int ifindex);
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdev_nextindex
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the interface index to the next valid device.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* ifindex - The first interface index to check. Usually in a traversal
|
2018-06-26 00:55:45 +02:00
|
|
|
* this would be the previous interface index plus 1.
|
2018-06-25 20:08:10 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The interface index for the next network driver. -ENODEV is returned if
|
|
|
|
* there are no further devices with assigned interface indices.
|
2015-11-27 23:39:14 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2018-06-25 20:08:10 +02:00
|
|
|
#ifdef CONFIG_NETDEV_IFINDEX
|
|
|
|
int netdev_nextindex(int ifindex);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdev_indextoname
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The if_indextoname() function maps an interface index to its
|
|
|
|
* corresponding name.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* ifname - Points to a buffer of at least IF_NAMESIZE bytes.
|
|
|
|
* if_indextoname() will place in this buffer the name of the
|
|
|
|
* interface with index ifindex.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* If ifindex is an interface index, then the function will return zero
|
|
|
|
* (OK). Otherwise, the function returns a negated errno value;
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NETDEV_IFINDEX
|
|
|
|
int netdev_indextoname(unsigned int ifindex, FAR char *ifname);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdev_nametoindex
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The if_nametoindex() function returns the interface index corresponding
|
|
|
|
* to name ifname.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* ifname - The interface name
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The corresponding index if ifname is the name of an interface;
|
|
|
|
* otherwise, a negated errno value is returned.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NETDEV_IFINDEX
|
|
|
|
unsigned int netdev_nametoindex(FAR const char *ifname);
|
|
|
|
#endif
|
2015-11-27 23:39:14 +01:00
|
|
|
|
2015-05-27 22:34:15 +02:00
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_default
|
2015-05-27 22:34:15 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the default network device. REVISIT: At present this function
|
|
|
|
* arbitrarily returns the first UP device at the head of the device
|
|
|
|
* list. Perhaps the default device should be a device name
|
|
|
|
* configuration option?
|
|
|
|
*
|
|
|
|
* So why is this here: It represents my current though for what to do
|
|
|
|
* if a socket is connected with INADDY_ANY. In this case, I suppose we
|
|
|
|
* should use the IP address associated with some default device???
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2015-05-27 22:34:15 +02:00
|
|
|
* NULL
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Pointer to default network driver on success; null on failure
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2014-11-21 21:14:39 +01:00
|
|
|
|
|
|
|
#if CONFIG_NSOCKET_DESCRIPTORS > 0
|
|
|
|
FAR struct net_driver_s *netdev_default(void);
|
|
|
|
#endif
|
|
|
|
|
2015-05-27 22:34:15 +02:00
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_ipv4_txnotify
|
2015-05-27 22:34:15 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Notify the device driver that forwards the IPv4 address that new TX
|
|
|
|
* data is available.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2015-05-27 22:34:15 +02:00
|
|
|
* lipaddr - The local address bound to the socket
|
|
|
|
* ripaddr - The remote address to send the data
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2014-06-27 18:00:28 +02:00
|
|
|
|
|
|
|
#if CONFIG_NSOCKET_DESCRIPTORS > 0
|
2015-01-16 19:30:18 +01:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
void netdev_ipv4_txnotify(in_addr_t lipaddr, in_addr_t ripaddr);
|
|
|
|
#endif /* CONFIG_NET_IPv4 */
|
|
|
|
|
2015-05-27 22:34:15 +02:00
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_ipv6_txnotify
|
2015-05-27 22:34:15 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Notify the device driver that forwards the IPv4 address that new TX
|
|
|
|
* data is available.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2015-05-27 22:34:15 +02:00
|
|
|
* lipaddr - The local address bound to the socket
|
|
|
|
* ripaddr - The remote address to send the data
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-16 19:30:18 +01:00
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
void netdev_ipv6_txnotify(FAR const net_ipv6addr_t lipaddr,
|
|
|
|
FAR const net_ipv6addr_t ripaddr);
|
|
|
|
#endif /* CONFIG_NET_IPv6 */
|
|
|
|
#endif /* CONFIG_NSOCKET_DESCRIPTORS > 0 */
|
2014-06-27 18:00:28 +02:00
|
|
|
|
2015-05-27 22:34:15 +02:00
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_txnotify_dev
|
2015-05-27 22:34:15 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Notify the device driver that new TX data is available. This variant
|
|
|
|
* would be called when the upper level logic already understands how the
|
|
|
|
* packet will be routed.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2015-05-27 22:34:15 +02:00
|
|
|
* dev - The network device driver state structure.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-27 19:39:44 +02:00
|
|
|
void netdev_txnotify_dev(FAR struct net_driver_s *dev);
|
|
|
|
|
2015-05-27 22:34:15 +02:00
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_count
|
2015-05-27 22:34:15 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the number of network devices
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2015-05-27 22:34:15 +02:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The number of network devices
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2014-06-27 18:00:28 +02:00
|
|
|
|
|
|
|
#if CONFIG_NSOCKET_DESCRIPTORS > 0
|
|
|
|
int netdev_count(void);
|
|
|
|
#endif
|
2007-09-17 00:12:04 +02:00
|
|
|
|
2017-09-19 22:17:05 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdev_ipv4_ifconf
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the IPv4 configuration of each network adaptor
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2017-09-19 22:17:05 +02:00
|
|
|
* ifc - A reference to the instance of struct ifconf in which to return
|
|
|
|
* the information.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero is returned on success; a negated errno value is returned on any
|
|
|
|
* failure.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* The nework is locked
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
struct ifconf; /* Forward reference */
|
|
|
|
int netdev_ipv4_ifconf(FAR struct ifconf *ifc);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdev_ipv6_ifconf
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Return the IPv6 configuration of each network adaptor
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2017-09-19 22:17:05 +02:00
|
|
|
* lifc - A reference to the instance of struct lifconf in which to return
|
|
|
|
* the information.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero is returned on success; a negated errno value is returned on any
|
|
|
|
* failure.
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
* The nework is locked
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
struct lifconf; /* Forward reference */
|
|
|
|
int netdev_ipv6_ifconf(FAR struct lifconf *lifc);
|
|
|
|
#endif
|
|
|
|
|
2017-07-07 14:51:52 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdev_dev_lladdrsize
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Returns the size of the MAC address associated with a network device.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2017-08-09 00:27:23 +02:00
|
|
|
* dev - A reference to the device of interest
|
2017-07-07 14:51:52 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* The size of the MAC address associated with this device
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-08-09 00:27:23 +02:00
|
|
|
int netdev_dev_lladdrsize(FAR struct net_driver_s *dev);
|
2017-07-07 03:37:01 +02:00
|
|
|
|
2018-09-09 18:39:25 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdown_notifier_setup
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Set up to notify the specified PID with the provided signal number.
|
|
|
|
*
|
|
|
|
* NOTE: To avoid race conditions, the caller should set the sigprocmask
|
|
|
|
* to block signal delivery. The signal will be delivered once the
|
|
|
|
* signal is removed from the sigprocmask.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* pid - The PID to be notified. If a zero value is provided, then the
|
|
|
|
* PID of the calling thread will be used.
|
|
|
|
* signo - The signal number to use with the notification.
|
|
|
|
* dev - The network driver to be monitored
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* > 0 - The signal notification is in place. The returned value is a
|
|
|
|
* key that may be used later in a call to
|
|
|
|
* netdown_notifier_teardown().
|
|
|
|
* == 0 - The the device is already down. No signal notification will
|
|
|
|
* be provided.
|
|
|
|
* < 0 - An unexpected error occurred and no signal will be sent. The
|
|
|
|
* returned value is a negated errno value that indicates the
|
|
|
|
* nature of the failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NETDOWN_NOTIFIER
|
|
|
|
int netdown_notifier_setup(int pid, int signo, FAR struct net_driver_s *dev);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdown_notifier_teardown
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Eliminate a TCP read-ahead notification previously setup by
|
|
|
|
* netdown_notifier_setup(). This function should only be called if the
|
|
|
|
* notification should be aborted prior to the notification. The
|
|
|
|
* notification will automatically be torn down after the signal is sent.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* key - The key value returned from a previous call to
|
|
|
|
* netdown_notifier_setup().
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
|
|
|
* any failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NETDOWN_NOTIFIER
|
|
|
|
int netdown_notifier_teardown(int key);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: netdown_notifier_signal
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Read-ahead data has been buffered. Signal all threads waiting for
|
|
|
|
* read-ahead data to become available.
|
|
|
|
*
|
|
|
|
* When the read-ahead data becomes available, *all* of the waiters in
|
|
|
|
* this thread will be signaled. If there are multiple waiters then only
|
|
|
|
* the highest priority thread will get the data. Lower priority threads
|
|
|
|
* will need to call netdown_notifier_setup() once again.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* dev - The TCP connection where read-ahead data was just buffered.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NETDOWN_NOTIFIER
|
|
|
|
void netdown_notifier_signal(FAR struct net_driver_s *dev);
|
|
|
|
#endif
|
|
|
|
|
2014-06-27 18:00:28 +02:00
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
2007-09-17 00:12:04 +02:00
|
|
|
}
|
2014-06-27 18:00:28 +02:00
|
|
|
#endif
|
2007-09-17 00:12:04 +02:00
|
|
|
|
2014-06-27 18:00:28 +02:00
|
|
|
#endif /* __NET_NETDEV_NETDEV_H */
|