:orphan: .. title:: NET_SOCKETS_OFFLOAD_TLS .. option:: CONFIG_NET_SOCKETS_OFFLOAD_TLS *Offload TLS socket calls to the offloaded sockets* Type: ``bool`` Help ==== If enabled, the offloading engine is expected to handle TLS/DTLS socket calls. Othwerwise, Zephyrs native TLS socket implementation will be used, and only TCP/UDP socket calls will be offloaded. Direct dependencies =================== \ :option:`NET_SOCKETS_OFFLOAD ` && \ :option:`NET_SOCKETS ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/lib/sockets/Kconfig:141`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:89`` → ``subsys/net/lib/Kconfig:30`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Libraries → BSD Sockets compatible API → Offload Socket APIs [EXPERIMENTAL] .. parsed-literal:: config NET_SOCKETS_OFFLOAD_TLS bool "Offload TLS socket calls to the offloaded sockets" default y depends on \ :option:`NET_SOCKETS_OFFLOAD ` && \ :option:`NET_SOCKETS ` && \ :option:`NETWORKING ` help If enabled, the offloading engine is expected to handle TLS/DTLS socket calls. Othwerwise, Zephyrs native TLS socket implementation will be used, and only TCP/UDP socket calls will be offloaded. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*