nuttx/net/netlink/Kconfig
Gregory Nutt 2991987018 net/netlink/netlink_route.c (mostly): This completes a minimal netlink implementation that will retrieve the ARP table.
net/netlink:  Add basic hooks (only) to support the NETLINK_ROUTE protocol.
2019-11-03 13:59:42 -06:00

36 lines
877 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config NET_NETLINK
bool "Netlink socket support"
default n
depends on EXPERIMENTAL
---help---
Enable support for Nelink-like IPC sockets that will permit user-
space applications to interact with network services.
This logic is a WIP. Currenlty only fragmentary support is
available, not enough to actually do antything of consequence.
Hence, the feature depends on EXPERIMENTAL.
if NET_NETLINK
config NETLINK_CONNS
int "Number of netlink connections"
default 4
---help---
Maximum number of netlink connections (all tasks).
menu "Netlink Protocols"
config NETLINK_ROUTE
bool "Netlink Route protocol"
default n
---help---
Support the NETLINK_ROUTE protocol option.
endmenu # Netlink Protocols
endif # NET_NETLINK