:orphan: .. title:: NET_SOCKETS_OFFLOAD .. option:: CONFIG_NET_SOCKETS_OFFLOAD *Offload Socket APIs [EXPERIMENTAL]* Type: ``bool`` Help ==== Enables direct offloading of socket operations to dedicated TCP/IP hardware. This feature is intended to save resources by bypassing the Zephyr TCP/IP stack in the case where there is only one network interface required in the system, providing full BSD socket offload capability. As a result, it bypasses any potential IP routing that Zephyr might provide between multiple network interfaces. See NET_OFFLOAD for a more deeply integrated approach which offloads from the net_context() API within the Zephyr IP stack. Direct dependencies =================== \ :option:`NET_SOCKETS ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :option:`NET_SOCKETS_POSIX_NAMES ` Symbols that select this symbol =============================== - \ :option:`MODEM_UBLOX_SARA ` Symbols that imply this symbol ============================== - \ :option:`BSD_LIBRARY ` Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/lib/sockets/Kconfig:103`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``subsys/Kconfig:22`` → ``subsys/net/Kconfig:82`` → ``subsys/net/lib/Kconfig:28`` Menu path: (Top) → Networking → Link layer and IP networking support → Network Libraries → BSD Sockets compatible API .. parsed-literal:: config NET_SOCKETS_OFFLOAD bool "Offload Socket APIs [EXPERIMENTAL]" select \ :option:`NET_SOCKETS_POSIX_NAMES ` depends on \ :option:`NET_SOCKETS ` && \ :option:`NETWORKING ` help Enables direct offloading of socket operations to dedicated TCP/IP hardware. This feature is intended to save resources by bypassing the Zephyr TCP/IP stack in the case where there is only one network interface required in the system, providing full BSD socket offload capability. As a result, it bypasses any potential IP routing that Zephyr might provide between multiple network interfaces. See NET_OFFLOAD for a more deeply integrated approach which offloads from the net_context() API within the Zephyr IP stack. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*