Shantanu Singh
Shantanu Singh
Question: Does the library have support for HTTP proxies with authentication using the `mqtt_tls_client_ws()` API? For example, the Paho Mqtt library supports HTTP proxies with authentication: https://github.com/eclipse/paho.mqtt.c/pull/542#issuecomment-430072283
I was able to leverage [a fork that I'll try to get merged](https://github.com/shantanu1singh/boost-asio-gnutls) of [this repository](https://github.com/paullouisageneau/boost-asio-gnutls) (with minimal changes), to support the use of [gnutls](https://gitlab.com/gnutls/gnutls) instead of OpenSSL with the...
Add support for GnuTLS The feature is controlled through the variable `MQTT_USE_GNU_TLS`. `MQTT_USE_TLS` also needs to be enabled for this feature to work. If `MQTT_USE_GNU_TLS` is disabled and `MQTT_USE_TLS` is...
I noticed that the `CMakeLists.txt` file currently looks for OpenSSL if TLS is enabled ``` IF (MQTT_USE_TLS) FIND_PACKAGE (OpenSSL REQUIRED) IF (MQTT_USE_STATIC_OPENSSL) FIND_PACKAGE (ZLIB REQUIRED) ENDIF () ENDIF () ```...