Skip to content

Commit 4b28192

Browse files
Merge branch 'docs/outbox_doxygen' into 'master'
Adds missing documentation to outbox configuration. See merge request espressif/esp-mqtt!190
2 parents 301bd9e + c355e0b commit 4b28192

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)