Re: [zeromq-dev] Licence

2012-09-06 Thread Bennie Kloosteman
Ahh thanks, looks like the anti add bar in brain needs adjustment Ben On Fri, Sep 7, 2012 at 10:44 AM, Pieter Hintjens wrote: > On Fri, Sep 7, 2012 at 10:41 AM, Bennie Kloosteman > wrote: > > > I see the 15/ZMTP spec is covered by the GPL licence ? > > > > Is the software itself covered by GP

Re: [zeromq-dev] Licence

2012-09-06 Thread Pieter Hintjens
On Fri, Sep 7, 2012 at 10:41 AM, Bennie Kloosteman wrote: > I see the 15/ZMTP spec is covered by the GPL licence ? > > Is the software itself covered by GPL 3 or the lesser GPL ? Since GPL > means if I link it to any software I must release the source ... It does explain this on the right side

[zeromq-dev] Licence

2012-09-06 Thread Bennie Kloosteman
I see the 15/ZMTP spec is covered by the GPL licence ? Is the software itself covered by GPL 3 or the lesser GPL ? Since GPL means if I link it to any software I must release the source ... Ben ___ zeromq-dev mailing list zeromq-dev@lists.zeromq.org h

Re: [zeromq-dev] about using ZMQ_FD in an external select loop

2012-09-06 Thread diffuser78
Thanks Justin. But my question revolves around the external select() loop. I want to know whether external select() loop will wake the ZMQ FD time and again until all the bytes are read. I looked at some part of the code in router.cpp and it feels like that ZMQ reads partial messages so that the

Re: [zeromq-dev] about using ZMQ_FD in an external select loop

2012-09-06 Thread Justin Karneges
The ZMQ_FD is a special fd you use to get notified of events on a zmq socket. It is not the actual underlying network socket that receives messages. Remember a zmq socket is "virtual", and under the hood it may be managing many network sockets (or none at all, if you consider the ipc type). I d

Re: [zeromq-dev] about using ZMQ_FD in an external select loop

2012-09-06 Thread diffuser78
I did not frame my question correctly and subject was misleading too. Let me put that correctly. I am using a ZMQ FD in an external select() loop, i,.e, a ZMQ FD is added to the set of fds (regular unix fds) in an external select() loop. Consider a situation, for a given message (in a router deal

Re: [zeromq-dev] Multicast and wlan0

2012-09-06 Thread Will Heger
> Try "wlan0;239.192.0.1", i.e. prefix the adapter first. > > The biggest issue is that you are probably only testing on one host; try > sending and receiving between two different hosts on the network. So no success on either suggestion. I installed 2.2 with-pgm on a wired box and ran my produce

Re: [zeromq-dev] Multicast and wlan0

2012-09-06 Thread Steven McCoy
On 6 September 2012 14:29, Will Heger wrote: > > So I've just started working with (er attempting) epgm and I haven't been > able to read a single message yet. Other patterns like request-reply have > worked fine. The pyzmq test code (stolen from > http://code.saghul.net/implementing-a-pubsub-b

[zeromq-dev] Multicast and wlan0

2012-09-06 Thread Will Heger
So I've just started working with (er attempting) epgm and I haven't been able to read a single message yet. Other patterns like request-reply have worked fine. The pyzmq test code (stolen from http://code.saghul.net/implementing-a-pubsub-based-application-with) is listed below and below that is

Re: [zeromq-dev] New ZMTP protocol spec

2012-09-06 Thread Brian Knox
Thanks for the heads up Pieter, and thanks for the spec Martin! Brian On Thu, Sep 6, 2012 at 8:35 AM, Pieter Hintjens wrote: > Hi all, > > Thanks to intensive work by Martin Hurton, we have a new ZMTP/2.0 protocol > spec. > > It's here: http://rfc.zeromq.org/spec:15 > > The key things are (a) t

[zeromq-dev] New ZMTP protocol spec

2012-09-06 Thread Pieter Hintjens
Hi all, Thanks to intensive work by Martin Hurton, we have a new ZMTP/2.0 protocol spec. It's here: http://rfc.zeromq.org/spec:15 The key things are (a) the protocol now has version numbering (yay!), (b) it allows socket type verification and (c) it allows backwards compatibility with 0MQ/2.2 ap

[zeromq-dev] server with zmq_xrep close connection automaticly

2012-09-06 Thread Zhong Weilin
Hi, zeromq develop team. I hit a problem like that: in the begining a certain amount of clients(about 20) can connect to the server with zmq_xrep ok and can communication normally, but after that client with zmq_req connect to the server with zmq_xrep, the server close the connection auto

Re: [zeromq-dev] server with zmq_xrep closes connection automaticly

2012-09-06 Thread Bennie Kloosteman
Unix or windows server Ben On Thu, Sep 6, 2012 at 6:02 PM, HP010170 wrote: > Zhong: > > If you can provide the source code, it will be easier for the various > 0mq experts on the list to assist with your problem. > > HP > > On 06/09/2012 06:29, Zhong Weilin wrote: > > Hi, > > zeromq develo

Re: [zeromq-dev] server with zmq_xrep closes connection automaticly

2012-09-06 Thread HP010170
Zhong: If you can provide the source code, it will be easier for the various 0mq experts on the list to assist with your problem. HP On 06/09/2012 06:29, Zhong Weilin wrote: > Hi, > zeromq develop team. > I hit a problem like that: in the begining a certain amount of > clients(about 2