Skip to content

Commit c355e0b

Browse files
docs: Adds missing documentation to outbox configuration.
1 parent 301bd9e commit c355e0b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

include/mqtt_client.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,9 +356,13 @@ typedef struct esp_mqtt_client_config_t {
356356
int out_size; /*!< size of *MQTT* output buffer. If not defined, defaults to the size defined by
357357
``buffer_size`` */
358358
} buffer; /*!< Buffer size configuration.*/
359+
360+
/**
361+
* Client outbox configuration options.
362+
*/
359363
struct outbox_config_t {
360364
uint64_t limit; /*!< Size limit for the outbox in bytes.*/
361-
} outbox;
365+
} outbox; /*!< Outbox configuration. */
362366
} esp_mqtt_client_config_t;
363367

364368
/**

0 commit comments

Comments
 (0)