:orphan: .. title:: CONFIG_NET_SOCKETS_PRIORITY_DEFAULT .. kconfig:: CONFIG_NET_SOCKETS_PRIORITY_DEFAULT CONFIG_NET_SOCKETS_PRIORITY_DEFAULT ################################### *Default processing priority for sockets* Type: ``int`` Help ==== .. code-block:: none Default processing priority for socket implementations. This defines the order of processing of particular socket implementations when creating a new socket, lower value indicate earlier processing. This allows to for instance prioritize offloaded socket processing during socket creation over the native one, or vice versa. Direct dependencies =================== \ :kconfig:`NET_SOCKETS ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 50 Kconfig definition ================== At ``/net/lib/sockets/Kconfig:13`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:87`` → ``/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 .. code-block:: kconfig config NET_SOCKETS_PRIORITY_DEFAULT int "Default processing priority for sockets" default 50 depends on NET_SOCKETS && NETWORKING help Default processing priority for socket implementations. This defines the order of processing of particular socket implementations when creating a new socket, lower value indicate earlier processing. This allows to for instance prioritize offloaded socket processing during socket creation over the native one, or vice versa. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*