zephyr/subsys/net/lib/Kconfig
Jukka Rissanen e917d80473 net: capture: Add support for network packet capturing
Add infrastructure to allow user to configure the system so that
all the network packets, that are sent to or received from a specific
network interface, are sent to remote system for analysis.
The captured network packets are placed as a payload in UDP packet,
which is then sent inside a tunnel to a remote host. The host can
then receive the packets and for example show them in wireshark.

Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
2021-04-02 07:24:06 -04:00

43 lines
753 B
Plaintext

# Copyright (c) 2016 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
menu "Network Protocols"
source "subsys/net/lib/coap/Kconfig"
source "subsys/net/lib/dns/Kconfig"
source "subsys/net/lib/mqtt/Kconfig"
source "subsys/net/lib/tftp/Kconfig"
source "subsys/net/lib/http/Kconfig"
source "subsys/net/lib/websocket/Kconfig"
source "subsys/net/lib/lwm2m/Kconfig"
source "subsys/net/lib/socks/Kconfig"
source "subsys/net/lib/sntp/Kconfig"
endmenu
menu "Network Libraries"
source "subsys/net/lib/config/Kconfig"
source "subsys/net/lib/sockets/Kconfig"
source "subsys/net/lib/tls_credentials/Kconfig"
endmenu
menu "Network additional services"
source "subsys/net/lib/conn_mgr/Kconfig"
source "subsys/net/lib/capture/Kconfig"
endmenu