:orphan: .. title:: CONFIG_NET_CONTEXT_TXTIME .. kconfig:: CONFIG_NET_CONTEXT_TXTIME CONFIG_NET_CONTEXT_TXTIME ######################### *Add TXTIME support to net\_context* Type: ``bool`` Help ==== .. code-block:: none It is possible to add information when the outgoing network packet should be sent. The TX time information should be placed into ancillary data field in sendmsg call. Direct dependencies =================== !\ :kconfig:`NET_RAW_MODE ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Symbols selected by this symbol =============================== - \ :kconfig:`NET_PKT_TXTIME ` Kconfig definition ================== At ``/net/ip/Kconfig:558`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:87`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → IP stack .. code-block:: kconfig config NET_CONTEXT_TXTIME bool "Add TXTIME support to net_context" select NET_PKT_TXTIME depends on !NET_RAW_MODE && NETWORKING help It is possible to add information when the outgoing network packet should be sent. The TX time information should be placed into ancillary data field in sendmsg call. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*