Re: [zeromq-dev] testing of tcpdump decoder of ZeroMQ wire protocol

2013-03-15 Thread Steven McCoy
On 15 March 2013 07:20, Denis Ovsienko wrote: > There are commits in the git master branch of the tcpdump packet analyzer > adding support for the "tcp://" protocol schema of ZeroMQ (ZMTP/1.0 framing > inside TCP segments produced by zeromq library version 2.x): > https://github.com/mcr/tcpdump

Re: [zeromq-dev] Basic server.c example

2013-03-15 Thread Joshua Foster
You can also use something like zmqc (https://github.com/jhawk28/zmqc) to send from the command line. Joshua Alexandre Fromage March 15, 2013 6:18 AM Hi, You might want to read that http://rfc.zeromq.org/spec:13 . You need to use the correct protocol to communicate with

Re: [zeromq-dev] subscriber stopped receiving messages from XPUB socket

2013-03-15 Thread Pieter Hintjens
It sounds like a problem in the subscription forwarding, yet it's not clear how a subscriber could be affected by the publisher restarting, with the proxy in between. Do you need the proxy at all? First thing would be to connect subscribers directly to the publisher. If the problem then still happ

Re: [zeromq-dev] testing of tcpdump decoder of ZeroMQ wire protocol

2013-03-15 Thread Pieter Hintjens
On Fri, Mar 15, 2013 at 12:20 PM, Denis Ovsienko wrote: > There are commits in the git master branch of the tcpdump packet analyzer > adding support for the "tcp://" protocol schema of ZeroMQ (ZMTP/1.0 framing > inside TCP segments produced by zeromq library version 2.x): > https://github.com/m

[zeromq-dev] testing of tcpdump decoder of ZeroMQ wire protocol

2013-03-15 Thread Denis Ovsienko
Hello, list. There are commits in the git master branch of the tcpdump packet analyzer adding support for the "tcp://" protocol schema of ZeroMQ (ZMTP/1.0 framing inside TCP segments produced by zeromq library version 2.x): https://github.com/mcr/tcpdump There are also additional commits (not y

Re: [zeromq-dev] Basic server.c example

2013-03-15 Thread Alexandre Fromage
Hi, You might want to read that http://rfc.zeromq.org/spec:13 . You need to use the correct protocol to communicate with a ZeroMQ peer. Hence you'd better use directly the ZeroMQ api for your client. Regards, From: zeromq-dev-boun...@lists.zeromq.org [mailto:zeromq-dev-boun...@lists.zer

[zeromq-dev] Basic server.c example

2013-03-15 Thread Pritesh Acharya
Hi, I'm running the first server.c example of zmq guide. Instead of using client.c example to send message to server, I want to use some linux command to do that. I've tried several attempts like 1. $ echo “hello” > /dev/tcp/localhost/ 2. nc localhost 3. echo "hello" | socat - tcp4:localho