net: Shorten IPv4/6 config options
This is meant to stay in 80 chars line length limit. Change-Id: Ib3b3b1cf5e05fec2407e470ae3600ff5a4c6a505 Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
parent
dc0ddca5fd
commit
249f889782
|
@ -147,9 +147,9 @@ struct net_if {
|
|||
char tx_fiber_stack[CONFIG_NET_TX_STACK_SIZE];
|
||||
|
||||
#if defined(CONFIG_NET_IPV6)
|
||||
#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IFACE_UNICAST_IPV6_ADDR_COUNT
|
||||
#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IFACE_MCAST_IPV6_ADDR_COUNT
|
||||
#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IFACE_IPV6_PREFIX_COUNT
|
||||
#define NET_IF_MAX_IPV6_ADDR CONFIG_NET_IF_UNICAST_IPV6_ADDR_COUNT
|
||||
#define NET_IF_MAX_IPV6_MADDR CONFIG_NET_IF_MCAST_IPV6_ADDR_COUNT
|
||||
#define NET_IF_MAX_IPV6_PREFIX CONFIG_NET_IF_IPV6_PREFIX_COUNT
|
||||
struct {
|
||||
/** Unicast IP addresses */
|
||||
struct net_if_addr unicast[NET_IF_MAX_IPV6_ADDR];
|
||||
|
@ -165,8 +165,8 @@ struct net_if {
|
|||
#endif /* CONFIG_NET_IPV6 */
|
||||
|
||||
#if defined(CONFIG_NET_IPV4)
|
||||
#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IFACE_UNICAST_IPV4_ADDR_COUNT
|
||||
#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IFACE_MCAST_IPV4_ADDR_COUNT
|
||||
#define NET_IF_MAX_IPV4_ADDR CONFIG_NET_IF_UNICAST_IPV4_ADDR_COUNT
|
||||
#define NET_IF_MAX_IPV4_MADDR CONFIG_NET_IF_MCAST_IPV4_ADDR_COUNT
|
||||
struct {
|
||||
/** Unicast IP addresses */
|
||||
struct net_if_addr unicast[NET_IF_MAX_IPV4_ADDR];
|
||||
|
|
|
@ -30,18 +30,18 @@ config NET_IPV6
|
|||
Enable IPv6 support. This should be selected by default as there is
|
||||
limited set of network bearers provided that support IPv4.
|
||||
|
||||
config NET_IFACE_UNICAST_IPV6_ADDR_COUNT
|
||||
int "Max number of unicast IPv6 addresses assigned to network interface"
|
||||
config NET_IF_UNICAST_IPV6_ADDR_COUNT
|
||||
int "Max number of unicast IPv6 addresses per network interface"
|
||||
depends on NET_IPV6
|
||||
default 1
|
||||
|
||||
config NET_IFACE_MCAST_IPV6_ADDR_COUNT
|
||||
int "Max number of multicast IPv6 addresses assigned to network interface"
|
||||
config NET_IF_MCAST_IPV6_ADDR_COUNT
|
||||
int "Max number of multicast IPv6 addresses per network interface"
|
||||
depends on NET_IPV6
|
||||
default 1
|
||||
|
||||
config NET_IFACE_IPV6_PREFIX_COUNT
|
||||
int "Max number of IPv6 prefixes assigned to network interface"
|
||||
config NET_IF_IPV6_PREFIX_COUNT
|
||||
int "Max number of IPv6 prefixes per network interface"
|
||||
depends on NET_IPV6
|
||||
default 2
|
||||
|
||||
|
@ -59,13 +59,13 @@ config NET_IPV4
|
|||
Enable IPv4 support. If this is enabled then the device is
|
||||
able to send and receive IPv4 network packets.
|
||||
|
||||
config NET_IFACE_UNICAST_IPV4_ADDR_COUNT
|
||||
int "Max number of unicast IPv4 addresses assigned to network interface"
|
||||
config NET_IF_UNICAST_IPV4_ADDR_COUNT
|
||||
int "Max number of unicast IPv4 addresses per network interface"
|
||||
depends on NET_IPV4
|
||||
default 1
|
||||
|
||||
config NET_IFACE_MCAST_IPV4_ADDR_COUNT
|
||||
int "Max number of multicast IPv4 addresses assigned to network interface"
|
||||
config NET_IF_MCAST_IPV4_ADDR_COUNT
|
||||
int "Max number of multicast IPv4 addresses per network interface"
|
||||
depends on NET_IPV4
|
||||
default 1
|
||||
|
||||
|
|
Loading…
Reference in New Issue