2013-10-02 02:55:20 +02:00
|
|
|
/****************************************************************************
|
2014-06-26 21:02:08 +02:00
|
|
|
* net/route/route.h
|
2013-10-02 02:55:20 +02: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
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2013-10-02 02:55:20 +02: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.
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-06-26 21:02:08 +02:00
|
|
|
#ifndef __NET_ROUTE_ROUTE_H
|
|
|
|
#define __NET_ROUTE_ROUTE_H
|
2013-10-02 02:55:20 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2013-10-05 20:05:51 +02:00
|
|
|
|
|
|
|
#include <net/if.h>
|
|
|
|
|
2014-07-05 03:13:08 +02:00
|
|
|
#include <nuttx/net/ip.h>
|
|
|
|
|
2013-10-02 02:55:20 +02:00
|
|
|
#ifdef CONFIG_NET_ROUTE
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 17:04:31 +02:00
|
|
|
|
2013-10-02 02:55:20 +02:00
|
|
|
/* This structure describes one entry in the routing table */
|
|
|
|
|
2015-05-13 15:22:02 +02:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
2017-08-11 00:18:06 +02:00
|
|
|
struct net_route_ipv4_s
|
2013-10-02 02:55:20 +02:00
|
|
|
{
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 17:04:31 +02:00
|
|
|
in_addr_t target; /* The destination network */
|
|
|
|
in_addr_t netmask; /* The network address mask */
|
|
|
|
in_addr_t router; /* Route packets via this router */
|
2013-10-02 02:55:20 +02:00
|
|
|
};
|
|
|
|
|
2021-02-19 15:01:46 +01:00
|
|
|
/* Type of the call out function pointer provided to
|
|
|
|
* net_foreachroute_ipv4()
|
|
|
|
*/
|
2013-10-02 02:55:20 +02:00
|
|
|
|
2017-09-29 20:04:45 +02:00
|
|
|
typedef int (*route_handler_ipv4_t)(FAR struct net_route_ipv4_s *route,
|
2017-08-11 00:18:06 +02:00
|
|
|
FAR void *arg);
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 17:04:31 +02:00
|
|
|
#endif /* CONFIG_NET_IPv4 */
|
2015-05-13 15:22:02 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
struct net_route_ipv6_s
|
|
|
|
{
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 17:04:31 +02:00
|
|
|
net_ipv6addr_t target; /* The destination network */
|
|
|
|
net_ipv6addr_t netmask; /* The network address mask */
|
|
|
|
net_ipv6addr_t router; /* Route packets via this router */
|
2015-05-13 15:22:02 +02:00
|
|
|
};
|
|
|
|
|
2021-02-19 15:01:46 +01:00
|
|
|
/* Type of the call out function pointer provided to
|
|
|
|
* net_foreachroute_ipv6()
|
|
|
|
*/
|
2015-05-13 15:22:02 +02:00
|
|
|
|
2017-08-10 17:14:31 +02:00
|
|
|
typedef int (*route_handler_ipv6_t)(FAR struct net_route_ipv6_s *route,
|
|
|
|
FAR void *arg);
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 17:04:31 +02:00
|
|
|
#endif /* CONFIG_NET_IPv6 */
|
2013-10-02 02:55:20 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-10-05 20:05:51 +02:00
|
|
|
/****************************************************************************
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 17:04:31 +02:00
|
|
|
* Name: net_init_route
|
2013-10-05 20:05:51 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize to the routing table
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2013-10-05 20:05:51 +02:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
Addes support for read-only routing tables. Prior to this change, routing tables were only support in RAM and had to be initialized with explicit logic to add the necessary routes to the routing table. With this change, routes may be defined in the pre-initialized, read-only routing table provided by the board-specific logic
This would be particularly useful, for example, in the case where there is only a single network adaptor and you want all output packets to go to the single adaptor in all cases. So for that behavior you could add a read-only routing table to the board-specific long that contains a single entry, the default route: 0.0.0.0/0.
Squashed commit of the following:
net/route: RAM and ROM routing tables build correctly in all IPv4 and IPv6 configurations.
net/route: Verify IPv6 ROM route build; Make number of ROM routes a variable, not a configuration item.
net/route: Add initial support for ROM-base, read-only routing tables.
net/route: Adjust and generalize some structures, rename some functions, and add configuration and build support that will eventually support read-only routing tables.
net/route: Some initial though experiments on use of a fixe, read-only routing table
2017-09-28 17:04:31 +02:00
|
|
|
void net_init_route(void);
|
2013-10-05 20:05:51 +02:00
|
|
|
|
2013-10-02 02:55:20 +02:00
|
|
|
/****************************************************************************
|
2017-08-10 17:14:31 +02:00
|
|
|
* Name: net_addroute_ipv4 and net_addroute_ipv6
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Add a new route to the routing table
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2013-10-05 20:05:51 +02:00
|
|
|
* target - The destination IP address on the destination network
|
|
|
|
* netmask - The mask defining the destination sub-net
|
|
|
|
* router - The IP address on one of our networks that provides the
|
|
|
|
* router to the external network
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* OK on success; Negated errno on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-13 15:22:02 +02:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
2017-08-10 17:14:31 +02:00
|
|
|
int net_addroute_ipv4(in_addr_t target, in_addr_t netmask,
|
|
|
|
in_addr_t router);
|
2015-05-13 15:22:02 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
int net_addroute_ipv6(net_ipv6addr_t target, net_ipv6addr_t netmask,
|
|
|
|
net_ipv6addr_t router);
|
|
|
|
#endif
|
2013-10-02 02:55:20 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2017-08-10 17:14:31 +02:00
|
|
|
* Name: net_delroute_ipv4 and net_delroute_ipv6
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Remove an existing route from the routing table
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* OK on success; Negated errno on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-13 15:22:02 +02:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
2017-08-10 17:14:31 +02:00
|
|
|
int net_delroute_ipv4(in_addr_t target, in_addr_t netmask);
|
2015-05-13 15:22:02 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
int net_delroute_ipv6(net_ipv6addr_t target, net_ipv6addr_t netmask);
|
|
|
|
#endif
|
2013-10-02 02:55:20 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: net_ipv4_router
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2015-01-16 19:30:18 +01:00
|
|
|
* Given an IPv4 address on a external network, return the address of the
|
2013-10-05 20:05:51 +02:00
|
|
|
* router on a local network that can forward to the external network.
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2015-01-16 19:30:18 +01:00
|
|
|
* target - An IPv4 address on a remote network to use in the lookup.
|
2013-10-05 21:16:18 +02:00
|
|
|
* router - The address of router on a local network that can forward our
|
|
|
|
* packets to the target.
|
|
|
|
*
|
2015-01-16 19:30:18 +01:00
|
|
|
* Returned Value:
|
|
|
|
* OK on success; Negated errno on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
int net_ipv4_router(in_addr_t target, FAR in_addr_t *router);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: net_ipv6_router
|
2015-01-16 19:30:18 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Given an IPv6 address on a external network, return the address of the
|
|
|
|
* router on a local network that can forward to the external network.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2015-01-16 19:30:18 +01:00
|
|
|
* target - An IPv6 address on a remote network to use in the lookup.
|
|
|
|
* router - The address of router on a local network that can forward our
|
|
|
|
* packets to the target.
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* OK on success; Negated errno on failure.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-10-05 20:05:51 +02:00
|
|
|
#ifdef CONFIG_NET_IPv6
|
2017-08-10 17:14:31 +02:00
|
|
|
int net_ipv6_router(const net_ipv6addr_t target, net_ipv6addr_t router);
|
2013-10-06 03:08:57 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_ipv4_router
|
2013-10-06 03:08:57 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2015-01-16 19:30:18 +01:00
|
|
|
* Given an IPv4 address on a external network, return the address of the
|
2013-10-06 03:08:57 +02:00
|
|
|
* router on a local network that can forward to the external network.
|
2015-01-16 19:30:18 +01:00
|
|
|
* This is similar to net_ipv4_router(). However, the set of routers is
|
2013-10-06 03:08:57 +02:00
|
|
|
* constrained to those accessible by the specific device
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2013-10-06 03:08:57 +02:00
|
|
|
* dev - We are committed to using this device.
|
2015-01-16 19:30:18 +01:00
|
|
|
* target - An IPv4 address on a remote network to use in the lookup.
|
2013-10-06 03:08:57 +02:00
|
|
|
* router - The address of router on a local network that can forward our
|
|
|
|
* packets to the target.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
2015-01-16 19:30:18 +01:00
|
|
|
* A router address is always returned (which may just be, perhaps,
|
2013-10-06 03:08:57 +02:00
|
|
|
* device's default router address)
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-16 19:30:18 +01:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
2014-06-28 00:48:12 +02:00
|
|
|
struct net_driver_s;
|
2015-01-16 19:30:18 +01:00
|
|
|
void netdev_ipv4_router(FAR struct net_driver_s *dev, in_addr_t target,
|
|
|
|
FAR in_addr_t *router);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: netdev_ipv6_router
|
2015-01-16 19:30:18 +01:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Given an IPv6 address on a external network, return the address of the
|
|
|
|
* router on a local network that can forward to the external network.
|
|
|
|
* This is similar to net_ipv6_router(). However, the set of routers is
|
|
|
|
* constrained to those accessible by the specific device
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2015-01-16 19:30:18 +01:00
|
|
|
* dev - We are committed to using this device.
|
|
|
|
* target - An IPv6 address on a remote network to use in the lookup.
|
|
|
|
* router - The address of router on a local network that can forward our
|
|
|
|
* packets to the target.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* A router address is always returned (which may just be, perhaps,
|
|
|
|
* device's default router address)
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2013-10-06 03:08:57 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
2015-01-16 19:30:18 +01:00
|
|
|
struct net_driver_s;
|
|
|
|
void netdev_ipv6_router(FAR struct net_driver_s *dev,
|
|
|
|
FAR const net_ipv6addr_t target,
|
|
|
|
FAR net_ipv6addr_t router);
|
2013-10-05 20:05:51 +02:00
|
|
|
#endif
|
2013-10-02 02:55:20 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2017-09-29 20:04:45 +02:00
|
|
|
* Name: net_foreachroute_ipv4/net_foreachroute_ipv6
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2017-07-08 21:03:58 +02:00
|
|
|
* Traverse the routing table
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2017-09-29 16:33:36 +02:00
|
|
|
* handler - Will be called for each route in the routing table.
|
|
|
|
* arg - An arbitrary value that will be passed tot he handler.
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
|
|
|
* Returned Value:
|
2017-09-29 20:04:45 +02:00
|
|
|
* Zero (OK) returned if the entire table was searched. A negated errno
|
2017-09-29 16:33:36 +02:00
|
|
|
* value will be returned in the event of a failure. Handlers may also
|
2017-09-29 20:04:45 +02:00
|
|
|
* terminate the search early with any non-zero value.
|
2013-10-02 02:55:20 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-05-13 15:22:02 +02:00
|
|
|
#ifdef CONFIG_NET_IPv4
|
2017-09-29 20:04:45 +02:00
|
|
|
int net_foreachroute_ipv4(route_handler_ipv4_t handler, FAR void *arg);
|
2015-05-13 15:22:02 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
int net_foreachroute_ipv6(route_handler_ipv6_t handler, FAR void *arg);
|
|
|
|
#endif
|
2013-10-02 02:55:20 +02:00
|
|
|
|
2017-08-11 00:18:06 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: net_ipv4_dumproute and net_ipv6_dumproute
|
|
|
|
*
|
|
|
|
* Description:
|
2017-08-11 00:31:25 +02:00
|
|
|
* Dump a routing table entry
|
2017-08-11 00:18:06 +02:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2017-08-11 00:18:06 +02:00
|
|
|
* route - The entry to be dumped
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG_NET_INFO
|
|
|
|
#ifdef CONFIG_NET_IPv4
|
|
|
|
void net_ipv4_dumproute(FAR const char *msg,
|
|
|
|
FAR struct net_route_ipv4_s *route);
|
|
|
|
#else
|
|
|
|
# define net_ipv4_dumproute(m,r)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_NET_IPv6
|
|
|
|
void net_ipv6_dumproute(FAR const char *msg,
|
|
|
|
FAR struct net_route_ipv6_s *route);
|
|
|
|
#else
|
|
|
|
# define net_ipv6_dumproute(m,r)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#else
|
|
|
|
# define net_ipv4_dumproute(m,r)
|
|
|
|
# define net_ipv6_dumproute(m,r)
|
|
|
|
#endif
|
|
|
|
|
2013-10-02 02:55:20 +02:00
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CONFIG_NET_ROUTE */
|
2014-06-26 21:02:08 +02:00
|
|
|
#endif /* __NET_ROUTE_ROUTE_H */
|