CONFIG_NET_SOCKETS_PRIORITY_DEFAULT

Default processing priority for sockets

Type: int

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.

Direct dependencies

NET_SOCKETS && NETWORKING

(Includes any dependencies from ifs and menus.)

Default

  • 50

Kconfig definition

At <Zephyr>/subsys/net/lib/sockets/Kconfig:13

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:44<Zephyr>/subsys/Kconfig:39<Zephyr>/subsys/net/Kconfig:87<Zephyr>/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

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.)