Improve automatic reconnect parameter documentation

This commit is contained in:
Ian Craggs 2022-07-14 11:52:08 +01:00
parent 9957c32e6b
commit 396d03ff6b
1 changed files with 3 additions and 3 deletions

View File

@ -1305,15 +1305,15 @@ typedef struct
*/
int MQTTVersion;
/**
* Reconnect automatically in the case of a connection being lost?
* Reconnect automatically in the case of a connection being lost. 0=false, 1=true
*/
int automaticReconnect;
/**
* Minimum retry interval in seconds. Doubled on each failed retry.
* The minimum automatic reconnect retry interval in seconds. Doubled on each failed retry.
*/
int minRetryInterval;
/**
* Maximum retry interval in seconds. The doubling stops here on failed retries.
* The maximum automatic reconnect retry interval in seconds. The doubling stops here on failed retries.
*/
int maxRetryInterval;
/**