Ricardo Vargas
Ricardo Vargas
I read on this [link](https://docs.astarte-platform.org/latest/029-interface_design_guide.html#aggregation-makes-a-difference) the explanation of aggregation as object requires a new table and might put pressure on the Cassandra Cluster. I could not find anything about aggregation...
@gopicisco , about mosquitto never reconnecting, I had to map the return codes of mosquitto_loop_forever and make my application do the reconnect to the MQTT broker when they happen (I...
I think you are facing a problem with OSSL compatibility on the lib name. Take a look at https://github.com/tpm2-software/tpm2-tss-engine/issues/6 . For quickly testing it, you can just create a symlink...
The use of MOSQ_OPT_TLS_USE_OS_CERTS (--tls-use-os-certs for mosquitto commands) seems not to work on some setups. On the lib, it uses SSL_CTX_set_default_verify_paths, as from the [man](https://www.openssl.org/docs/man3.3/man3/SSL_CTX_set_default_verify_paths.html), it says: > SSL_CTX_set_default_verify_paths() specifies...
Seems to be the same as https://github.com/eclipse/mosquitto/issues/2820
You may would like to see my comment that I mentioned your issue. It is related to libmosquitto not being able to handle EOF and other non-fatal SSL errors.
On [SSL_get_error man page](https://www.openssl.org/docs/man3.2/man3/SSL_get_error.html), it says: > On an unexpected EOF, versions before OpenSSL 3.0 returned SSL_ERROR_SYSCALL, nothing was added to the error stack, and errno was 0. Since OpenSSL...
Hi, Libmosquitto has some return codes (MOSQ_ERR_\) that are considered fatal errors and once happened will stop the automatic reconnection and your client application should 'manually' request to connect again....