Releases: ubyyj/paho.mqtt.c
Releases · ubyyj/paho.mqtt.c
fix MQTTClient_connect could hang on Windows bug
On Windows, when there is no network, MQTTClient_connect could hang for very long time. The reason is an negative timeout value could be passed to Thread_wait_sem in Thread.c. On Windows, WaitForSingleObject will be invoked, which expects an DWORD (which is unsigned long), hence the negative timeout value is coverted to an huge DWORD implicitely, hence the thread "hangs".
The fix is: convert negative timeout to zero.
Linux platform does not have the issue, since negative timeout value will not pass the while (++i < count) test, and the function returns immediately.