[zeromq-dev] Malamute broker project

Kenneth Adam Miller kennethadammiller at gmail.com
Sun Mar 1 19:17:18 CET 2015


Ah that helped! I think I can make progress now!!

On Sun, Mar 1, 2015 at 1:12 PM, Pieter Hintjens <ph at imatix.com> wrote:

> On Sun, Mar 1, 2015 at 6:57 PM, Kenneth Adam Miller
> <kennethadammiller at gmail.com> wrote:
>
> > I'm having difficulty - I run the malamute command and it reads up the
> > malamute.cfg because it announces that it's binding to tcp://*:9999
> >
> > I then have the following code with regards to establishing a client
> > connection to it:
> >
> >   mlm_client_t *frontend_reader = mlm_client_new();
> >   assert(frontend_reader);
> >   int rc=mlm_client_connect (frontend_reader,  "tcp://127.0.0.1:9999" ,
> > 1000, "reader/secret");
> >   assert(rc==0);  //this is line 67
> >
> > and I get this error:
> > LIBZMQ I: security failure, self=NULL peer=PLAIN
>
> The error happens because the broker is configured to NULL and the
> client is using PLAIN, I guess.
>
> You'll want to take the latest Malamute master, as this API call
> changed. There's now a separate call to set plain authentication on
> the client.
>
> To use NULL security, remove the security section from the config
> file, and don't set any plain security at the client side.
>
> -Pieter
> _______________________________________________
> zeromq-dev mailing list
> zeromq-dev at lists.zeromq.org
> http://lists.zeromq.org/mailman/listinfo/zeromq-dev
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.zeromq.org/pipermail/zeromq-dev/attachments/20150301/9f363d3d/attachment.htm>


More information about the zeromq-dev mailing list