Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [mosquitto-dev] MQTT 5 test release 1

Hi Christoph,

I'll put in another compile check to catch the include. The actual
function is only used as a fallback for where TLS isn't in use, which
I hope isn't common.

Cheers,

Roger

On Wed, 27 Feb 2019 at 07:56, Christoph Krey <c@xxxxxxxx> wrote:
>
> Hi Roger,
>
> thanks, Will Delay Interval is now working.
>
> Just a side note:
>
> You rely on glibc 2.25 in `src/handle_connect.c` which is still not in the stable release of Debian (https://tracker.debian.org/pkg/glibc)
>
> ```
> #ifdef __linux__
> #  include <sys/random.h>
> #endif
> …
> #  ifdef __GLIBC__
>         if(getrandom(bytes, 16, 0) == 0){
>                 rc = MOSQ_ERR_SUCCESS;
>         }
> #
> ```
>
> Cheers,
>    Christoph
>
> Am 26.02.2019 um 20:05 schrieb Roger Light <roger@xxxxxxxxxx>:
>
> Hi Christoph,
>
> Will delay interval should now be working (I've merged on to the
> develop branch now by the way). DISCONNECT with will is coming soon.
>
> Cheers,
>
> Roger
>
> On Fri, 22 Feb 2019 at 09:45, Christoph Krey <c@xxxxxxxx> wrote:
>
>
> Hi again Roger,
>
> you did not state explicitly whether mosquitto already supports
>
> - Will Delay Interval (CONNECT) or
> - DISCONNECT reason code 04 Disconnect with Will Message
>
> My tests suggest it doesn’t yet.
>
> Christoph
>
>
> _______________________________________________
> mosquitto-dev mailing list
> mosquitto-dev@xxxxxxxxxxx
> To change your delivery options, retrieve your password, or unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/mosquitto-dev
>
> _______________________________________________
> mosquitto-dev mailing list
> mosquitto-dev@xxxxxxxxxxx
> To change your delivery options, retrieve your password, or unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/mosquitto-dev
>
>
> _______________________________________________
> mosquitto-dev mailing list
> mosquitto-dev@xxxxxxxxxxx
> To change your delivery options, retrieve your password, or unsubscribe from this list, visit
> https://www.eclipse.org/mailman/listinfo/mosquitto-dev


Back to the top