:orphan: .. title:: CONFIG_LWM2M_ENGINE_VALIDATION_BUFFER_SIZE .. kconfig:: CONFIG_LWM2M_ENGINE_VALIDATION_BUFFER_SIZE CONFIG_LWM2M_ENGINE_VALIDATION_BUFFER_SIZE ########################################## *Size of the validation buffer for the incoming data* Type: ``int`` Help ==== .. code-block:: none LwM2M will use the validation buffer during the write operation, to decode the resource value before validating it (applies for resources for which validation callback has been registered). Set this value to the maximum expected size of the resources that need to be validated (and thus have validation callback registered). Setting the validation buffer size to 0 disables validation support. Direct dependencies =================== \ :kconfig:`LWM2M ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 64 Kconfig definition ================== At ``/net/lib/lwm2m/Kconfig:96`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:87`` → ``/net/lib/Kconfig:18`` Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Protocols → OMA LWM2M protocol stack .. code-block:: kconfig config LWM2M_ENGINE_VALIDATION_BUFFER_SIZE int "Size of the validation buffer for the incoming data" default 64 depends on LWM2M && NETWORKING help LwM2M will use the validation buffer during the write operation, to decode the resource value before validating it (applies for resources for which validation callback has been registered). Set this value to the maximum expected size of the resources that need to be validated (and thus have validation callback registered). Setting the validation buffer size to 0 disables validation support. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*