8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7195a9 + d76cbe5 commit 7e00252Copy full SHA for 7e00252
src/MqttClient.cpp
@@ -69,6 +69,7 @@ MqttClient::MqttClient(Client* client) :
69
_cleanSession(true),
70
_keepAliveInterval(60 * 1000L),
71
_connectionTimeout(30 * 1000L),
72
+ _tx_payload_buffer_size(TX_PAYLOAD_BUFFER_SIZE),
73
_connectError(MQTT_SUCCESS),
74
_connected(false),
75
_subscribeQos(0x00),
@@ -79,8 +80,7 @@ MqttClient::MqttClient(Client* client) :
79
80
_willBuffer(NULL),
81
_willBufferIndex(0),
82
_willMessageIndex(0),
- _willFlags(0x00),
83
- _tx_payload_buffer_size(TX_PAYLOAD_BUFFER_SIZE)
+ _willFlags(0x00)
84
{
85
setTimeout(0);
86
}
0 commit comments