CONFIG_NET_TX_DEFAULT_PRIORITY

Default network packet priority if none have been set

Type: int

Help

What is the default network packet priority if user has not specified one. The value 0 means lowest priority and 7 is the highest.

Direct dependencies

!NET_RAW_MODE && NETWORKING

(Includes any dependencies from if’s and menus.)

Defaults

Kconfig definition

At subsys/net/ip/Kconfig:106

Included via Kconfig:10Kconfig.zephyr:35subsys/Kconfig:22subsys/net/Kconfig:91

Menu path: (top menu) → Networking → IP stack

config NET_TX_DEFAULT_PRIORITY
    int
    prompt "Default network packet priority if none have been set" if !NET_RAW_MODE && NETWORKING
    range 0 7 if !NET_RAW_MODE && NETWORKING
    default 1 if !NET_RAW_MODE && NETWORKING
    depends on !NET_RAW_MODE && NETWORKING
    help
      What is the default network packet priority if user has not specified
      one. The value 0 means lowest priority and 7 is the highest.

(Definitions include propagated dependencies, including from if’s and menus.)