Skip to content

Commit

Permalink
Merge branch 'docs/outbox_doxygen' into 'master'
Browse files Browse the repository at this point in the history
Adds missing documentation to outbox configuration.

See merge request espressif/esp-mqtt!190
  • Loading branch information
euripedesrocha committed Aug 31, 2023
2 parents 301bd9e + c355e0b commit 4b28192
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion include/mqtt_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,13 @@ typedef struct esp_mqtt_client_config_t {
int out_size; /*!< size of *MQTT* output buffer. If not defined, defaults to the size defined by
``buffer_size`` */
} buffer; /*!< Buffer size configuration.*/

/**
* Client outbox configuration options.
*/
struct outbox_config_t {
uint64_t limit; /*!< Size limit for the outbox in bytes.*/
} outbox;
} outbox; /*!< Outbox configuration. */
} esp_mqtt_client_config_t;

/**
Expand Down

0 comments on commit 4b28192

Please sign in to comment.