Roger Light

Results 356 comments of Roger Light

@lost-RD wow, that looks like filesystem corruption to me - I'd make sure you've got your data off there. Everybody else - my comment about running `sudo /usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf...

On further reading you can get this sort of effect if the `stat()` call fails. The stat man page lists these reasons for possible failure: * EACCES - Search permission...

40ms sounds very much like Nagle's algorithm. Could you please try adding `set_tcp_nodelay true` to your config file and looking at your tests again?

The mosquitto clients assume that if you're using port 8883 you are using TLS. In 2.1 you will be able to disable this behaviour, but not in 2.0.x.

Hi Frank, Windows thread support is back for the 2.1 release, I don't intend to change anything for 2.0 in that regard. C++11 threads aren't available in C, so that's...

I tried using your main_poll_readwrite.c code, thanks for providing that. For the mosquitto config I used: ``` listener 8883 cafile ../test/ssl/all-ca.crt certfile ../test/ssl/server.crt keyfile ../test/ssl/server.key password_file pw ``` Those certificates...

I used 1.6.12 from the Ubuntu PPA. The broker was the `fixes` branch I think, but really there's no difference to that and what's in 1.6.12.

Thank you for the report and clear description of how to reproduce the problem. This issue has already been addressed in more recent versions of the broker, and I only...

My apologies, I may have been testing against the `fixes` branch which does contain a relevant change for this, rather than against 2.0.14. I am planning the 2.0.15 release for...

You can add a `correlationData` field like shown below - I see that isn't explained in the documentation though. I'm also considering restricting replies to the client that sent the...