:orphan: .. title:: MODEM_SOCKET_PACKET_COUNT .. option:: CONFIG_MODEM_SOCKET_PACKET_COUNT *Maximum number of stored packet sizes per socket* Type: ``int`` Help ==== As the modem indicates more data is available to be received, these values are organized into "packets". This setting limits the maximum number of packet sizes the socket can keep track of. Direct dependencies =================== \ :option:`MODEM_SOCKET ` && \ :option:`MODEM_CONTEXT ` && \ :option:`MODEM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 6 Kconfig definition ================== .. highlight:: kconfig At ``drivers/modem/Kconfig:109`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:82`` Menu path: (Top) → Device Drivers → Modem Drivers → Modem context helper driver [EXPERIMENTAL] → Generic modem socket support layer .. parsed-literal:: config MODEM_SOCKET_PACKET_COUNT int "Maximum number of stored packet sizes per socket" default 6 depends on \ :option:`MODEM_SOCKET ` && \ :option:`MODEM_CONTEXT ` && \ :option:`MODEM ` help As the modem indicates more data is available to be received, these values are organized into "packets". This setting limits the maximum number of packet sizes the socket can keep track of. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*