:orphan: .. title:: CONFIG_NET_CONTEXT_SYNC_RECV .. kconfig:: CONFIG_NET_CONTEXT_SYNC_RECV CONFIG_NET_CONTEXT_SYNC_RECV ############################ *Support synchronous functionality in net\_context\_recv() API* Type: ``bool`` Help ==== .. code-block:: none You can disable sync support to save some memory if you are calling net_context_recv() in async way only when timeout is set to 0. Direct dependencies =================== !\ :kconfig:`NET_RAW_MODE ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/net/ip/Kconfig:538`` 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_SYNC_RECV bool "Support synchronous functionality in net_context_recv() API" default y depends on !NET_RAW_MODE && NETWORKING help You can disable sync support to save some memory if you are calling net_context_recv() in async way only when timeout is set to 0. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*