e917d80473
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>
43 lines
753 B
Plaintext
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
|