1# Copyright (c) 2018 Antmicro Ltd 2# SPDX-License-Identifier: Apache-2.0 3 4menuconfig SOCKS 5 bool "SOCKS5 proxy" 6 select NET_SOCKETS 7 select NET_SOCKETS_POSIX_NAMES 8 help 9 Enable SOCKS5 proxy support 10 11if SOCKS 12 13module = SOCKS 14module-dep = NET_LOG 15module-str = Log level for SOCKS proxy 16module-help = Enable debug messages for SOCKS5 protocol 17source "subsys/net/Kconfig.template.log_config.net" 18 19endif # SOCKS 20