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.
1 parent 3a28dbe commit fca362fCopy full SHA for fca362f
main/networking/mqtt/core_mqtt_agent_manager.c
@@ -586,6 +586,9 @@ static MQTTStatus_t prvCoreMqttAgentInit( NetworkContext_t * pxNetworkContext )
586
xTransport.send = espTlsTransportSend;
587
xTransport.recv = espTlsTransportRecv;
588
589
+ vTlsSetConnectTimeout( 3000 );
590
+ vTlsSetRecvTimeout( 100 );
591
+
592
/* Initialize MQTT library. */
593
xReturn = MQTTAgent_Init( &xGlobalMqttAgentContext,
594
&xMessageInterface,
0 commit comments